criu/images/pstree.proto
Kirill Tkhai a04d413000 images: Add NSpids pstree descriptions
Add new fields to store NSpid, NSsid, NSpgid for task and NStid for threads.

Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
2017-11-30 01:24:30 +03:00

18 lines
411 B
Protocol Buffer

syntax = "proto2";
message ns_tid {
repeated uint32 tid = 1;
}
message pstree_entry {
optional uint32 pid = 1;
required uint32 ppid = 2; /* Pid of parent in pid_ns NS_ROOT */
optional uint32 pgid = 3;
optional uint32 sid = 4;
repeated uint32 threads = 5;
repeated uint32 ns_pid = 6;
repeated uint32 ns_pgid = 7;
repeated uint32 ns_sid = 8;
repeated ns_tid tids = 9;
}