Dmitry V. Levin | a6ebdb1 | 2015-11-15 02:22:44 +0000 | [diff] [blame] | 1 | #include "defs.h" |
2 | #include <fcntl.h> | ||||
3 | |||||
4 | #include "xlat/uffd_flags.h" | ||||
5 | |||||
6 | SYS_FUNC(userfaultfd) | ||||
7 | { | ||||
8 | printflags(uffd_flags, tcp->u_arg[0], "UFFD_???"); | ||||
9 | |||||
10 | return RVAL_DECODED | RVAL_FD; | ||||
11 | } |