2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-29 05:18:00 +00:00
criu/protobuf/eventpoll.proto
Cyrill Gorcunov fa923ee14e protobuf: Convert eventpoll data to protobuf engine
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2012-07-17 07:25:40 +04:00

15 lines
285 B
Protocol Buffer

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;
}