criu/protobuf/timerfd.proto
Cyrill Gorcunov f2549c2207 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>
2014-08-06 19:18:25 +04:00

16 lines
357 B
Protocol Buffer

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