File: eventpoll.proto

package info (click to toggle)
golang-github-checkpoint-restore-go-criu 7.2.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, trixie
  • size: 1,796 kB
  • sloc: makefile: 231; ansic: 195; python: 137; sh: 110
file content (24 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT

syntax = "proto2";

import "fown.proto";

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

	/* to find dup'ed target files */
	optional uint32		dev	= 5;
	optional uint64		inode	= 6;
	optional uint64		pos	= 7;
}

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