Commit 04016641 authored by Pavel Emelyanov's avatar Pavel Emelyanov

signalfd: Add protobuf descriptions

Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 92e739e9
......@@ -30,6 +30,7 @@ PROTO_FILES += eventfd.proto
PROTO_FILES += eventpoll.proto
PROTO_FILES += fh.proto
PROTO_FILES += inotify.proto
PROTO_FILES += signalfd.proto
PROTO_FILES += fs.proto
PROTO_FILES += pstree.proto
PROTO_FILES += pipe.proto
......
......@@ -8,6 +8,7 @@ enum fd_types {
EVENTFD = 6;
EVENTPOLL = 7;
INOTIFY = 8;
SIGNALFD = 9;
}
message fdinfo_entry {
......
import "fown.proto";
message signalfd_entry {
required uint32 id = 1;
required uint32 flags = 2;
required fown_entry fown = 3;
required uint64 sigmask = 4;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment