* ioperm.c: New file.
* Makefile.am (strace_SOURCES): Add it.
* linux/dummy.h (sys_ioperm): Remove stub alias.
inotify.c \
io.c \
ioctl.c \
+ ioperm.c \
ioprio.c \
ipc_defs.h \
ipc_msg.c \
--- /dev/null
+#include "defs.h"
+
+SYS_FUNC(ioperm)
+{
+ tprintf("%#lx, %#lx, %d",
+ tcp->u_arg[0], tcp->u_arg[1], (int) tcp->u_arg[2]);
+
+ return RVAL_DECODED;
+}
#endif
/* still unfinished */
-#define sys_ioperm printargs
#define sys_iopl printargs
#define sys_kcmp printargs
#define sys_kexec_file_load printargs