mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
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>
18 lines
411 B
Protocol Buffer
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;
|
|
}
|