mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
17 lines
344 B
Protocol Buffer
17 lines
344 B
Protocol Buffer
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;
|
|
}
|
|
|
|
message eventpoll_file_entry {
|
|
required uint32 id = 1;
|
|
required uint32 flags = 2;
|
|
required fown_entry fown = 3;
|
|
repeated eventpoll_tfd_entry tfd = 4;
|
|
}
|