19 lines
276 B
C
19 lines
276 B
C
#ifndef SHARE_SYSDEFS_PROC_H_
|
|
#define SHARE_SYSDEFS_PROC_H_
|
|
|
|
#include "time.h"
|
|
|
|
#define PROC_ARG_MAX 128
|
|
|
|
typedef struct {
|
|
uint64_t pid;
|
|
char name[0x100];
|
|
uint8_t state;
|
|
size_t usemem;
|
|
Time time;
|
|
} ProcStat;
|
|
|
|
typedef uint64_t PID_t;
|
|
|
|
#endif // SHARE_SYSDEFS_PROC_H_
|