mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 00:58:31 +00:00
signalfd: Add protobuf descriptions
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
parent
92e739e9b6
commit
0401664144
3 changed files with 10 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
8
protobuf/signalfd.proto
Normal file
8
protobuf/signalfd.proto
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import "fown.proto";
|
||||
|
||||
message signalfd_entry {
|
||||
required uint32 id = 1;
|
||||
required uint32 flags = 2;
|
||||
required fown_entry fown = 3;
|
||||
required uint64 sigmask = 4;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue