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

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

message reg_file_entry {
	required uint32		id	= 1;
	required uint32		flags	= 2 [(criu).flags = "rfile.flags"];
	required uint64		pos	= 3;
	required fown_entry	fown	= 5;
	required string		name	= 6;
	optional sint32		mnt_id	= 7 [default = -1];
	optional uint64		size	= 8;
	optional bool		ext	= 9;
}