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

eventpoll.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c40675582f92bb17617b2e950d97acc716c1a821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import "fown.proto";

message eventpoll_tfd_entry {
	required uint32		id	= 1;
	required uint32		tfd	= 2;
	required uint32		events	= 3;
	required uint64		data	= 4;
}

message eventpoll_file_entry {
	required uint32		id	= 1;
	required uint32		flags	= 2;
	required fown_entry	fown	= 3;
	repeated eventpoll_tfd_entry tfd = 4;
}