5488c13eafe75032cb208f7e6c040b2638e2dda5
Stefan Schuermans first incomplete begin_proc...

Stefan Schuermans authored 4 years ago

1) syntax = "proto2";
2) 
3) package lwproctrace;
4) 
5) message timespec {
6)   required int64 sec = 1;
7)   optional int32 nsec = 2;
8) }
9) 
10) message proc_begin {
11)   required int32 pid = 1;
12)   optional int32 ppid = 2;
13)   optional string exe = 3;
14)   optional string cwd = 4;
15)   repeated string cmdline = 5;
16)   repeated string environ = 6;
17) }
18) 
19) message proc_end {
20)   required int32 pid = 1;
Stefan Schuermans proc_end: add proc_cpu_time

Stefan Schuermans authored 4 years ago

21)   optional timespec proc_cpu_time = 2;