rocnikovy-projekt

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

process_exit.h (483B)


      1 #ifndef PROCESS_EXIT_H
      2 #define PROCESS_EXIT_H
      3 
      4 #define TASK_COMM_LEN 16
      5 
      6 struct data_t {
      7     __u64 start_time;
      8     __u64 exit_time;
      9     __u64 utime;
     10     __u64 stime;
     11     __u32 tgid;
     12     __u32 pid;
     13     __u32 ppid;
     14     __u32 uid;
     15     __s32 exit_code;
     16     __s32 exit_signal;
     17     __u64 nvcsw;
     18     __u64 nivcsw;
     19     __u64 cutime;
     20     __u64 cstime;
     21     __u64 inblock;
     22     __u64 oublock;
     23     __u64 cinblock;
     24     __u64 coublock;
     25     char task[TASK_COMM_LEN];
     26 };
     27 
     28 #endif /* PROCESS_EXIT_H */