]> granicus.if.org Git - strace/blob - memfd_create.c
Mpersify parsers of utimes, futimesat, and utimensat syscalls
[strace] / memfd_create.c
1 #include "defs.h"
2
3 #include "xlat/memfd_create_flags.h"
4
5 SYS_FUNC(memfd_create)
6 {
7         printstr(tcp, tcp->u_arg[0], -1);
8         tprints(", ");
9         printflags(memfd_create_flags, tcp->u_arg[1], "MFD_???");
10
11         return RVAL_DECODED | RVAL_FD;
12 }