2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00

timerfd: protobuf -- Add timerfd_entry

Will need it to carry timerfd entries.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov 2014-06-30 21:58:03 +04:00 committed by Pavel Emelyanov
parent f22d0d65fc
commit f2549c2207
2 changed files with 17 additions and 0 deletions

View File

@ -36,6 +36,7 @@ proto-obj-y += mnt.o
proto-obj-y += pipe-data.o
proto-obj-y += sa.o
proto-obj-y += timer.o
proto-obj-y += timerfd.o
proto-obj-y += mm.o
proto-obj-y += sk-opts.o
proto-obj-y += sk-unix.o

16
protobuf/timerfd.proto Normal file
View File

@ -0,0 +1,16 @@
import "fown.proto";
message timerfd_entry {
required uint32 id = 1;
required uint32 flags = 2;
required fown_entry fown = 3;
required uint32 clockid = 4;
required uint64 ticks = 5;
required uint32 settime_flags = 6;
required uint64 vsec = 7;
required uint64 vnsec = 8;
required uint64 isec = 9;
required uint64 insec = 10;
}