Lines Matching defs:osl_procStat

1081 struct osl_procStat  struct
1084 pid_t pid; /* pid */
1085 char command[16]; /* 'argv[0]' */ /* mfe: it all right char comm[16] in kernel! */
1086 char state; /* state (running, stopped, ...) */
1087 pid_t ppid; /* parent pid */
1088 pid_t pgrp; /* parent group */
1089 int session; /* session ID */
1090 int tty; /* no of tty */
1091 pid_t tpgid; /* group of process owning the tty */
1092 unsigned long flags; /* flags dunno */
1093 unsigned long minflt; /* minor page faults */
1094 unsigned long cminflt; /* minor page faults with children */
1095 unsigned long majflt; /* major page faults */
1096 unsigned long cmajflt; /* major page faults with children */
1097 unsigned long utime; /* no of jiffies in user mode */
1098 unsigned long stime; /* no of jiffies in kernel mode */
1099 unsigned long cutime; /* no of jiffies in user mode with children */
1100 unsigned long cstime; /* no of jiffies in kernel mode with children */
1101 unsigned long priority; /* nice value + 15 (kernel scheduling prio)*/
1102 long nice; /* nice value */
1103 long timeout; /* no of jiffies of next process timeout */
1104 long itrealvalue; /* no jiffies before next SIGALRM */
1105 unsigned long starttime; /* process started this no of jiffies after boot */
1106 unsigned long vsize; /* virtual memory size (in bytes) */
1107 long rss; /* resident set size (in pages) */
1108 unsigned long rss_rlim; /* rss limit (in bytes) */
1109 unsigned long startcode; /* address above program text can run */
1110 unsigned long endcode; /* address below program text can run */
1111 unsigned long startstack; /* address of start of stack */
1112 unsigned long kstkesp; /* current value of 'esp' (stack pointer) */
1113 unsigned long kstkeip; /* current value of 'eip' (instruction pointer) */
1116 char signal[24]; /* pending signals */
1117 char blocked[24]; /* blocked signals */
1118 char sigignore[24]; /* ignored signals */
1119 char sigcatch[24]; /* catched signals */
1126 unsigned long wchan; /* 'channel' the process is waiting in */
1127 unsigned long nswap; /* ? */
1128 unsigned long cnswap; /* ? */
1152 sal_Bool osl_getProcStat(pid_t pid, struct osl_procStat* procstat) in osl_getProcStat() argument