Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pstree.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fca284cb73a592a2571aec43cc1436c691dcaa8c (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MIT

syntax = "proto2";

message pstree_entry {
	required uint32			pid		= 1;
	required uint32			ppid		= 2;
	required uint32			pgid		= 3;
	required uint32			sid		= 4;
	repeated uint32			threads		= 5;
}