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