19 lines
270 B
C
19 lines
270 B
C
#ifndef _PROC_INFO_H
|
|
#define _PROC_INFO_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <path_defs.h>
|
|
|
|
struct proc_info {
|
|
int pid;
|
|
int exec_pid;
|
|
uint32_t flags;
|
|
int cpu;
|
|
int state;
|
|
int pgid;
|
|
char name[PATH_MAX + VOLUME_MAX];
|
|
};
|
|
|
|
#endif // _PROC_INFO_H
|