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

ipc-var.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cf34e7feaa92fc59d9770a68dc35f45ed682480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syntax = "proto2";

message ipc_var_entry {
	repeated uint32			sem_ctls		=  1;
	required uint32			msg_ctlmax		=  2;
	required uint32			msg_ctlmnb		=  3;
	required uint32			msg_ctlmni		=  4;
	required uint32			auto_msgmni		=  5;
	required uint64			shm_ctlmax		=  6;
	required uint64			shm_ctlall		=  7;
	required uint32			shm_ctlmni		=  8;
	required uint32			shm_rmid_forced		=  9;
	required uint32			mq_queues_max		= 10;
	required uint32			mq_msg_max		= 11;
	required uint32			mq_msgsize_max		= 12;
	optional uint32			mq_msg_default		= 13;
	optional uint32			mq_msgsize_default	= 14;
}