strace/iopl.c
Dmitry V. Levin dcd00c3943 Implement iopl syscall decoding
* iopl.c: New file.
* Makefile.am (strace_SOURCES): Add it.
* linux/dummy.h (sys_iopl): Remove stub alias.
2015-11-22 23:10:12 +00:00

9 lines
98 B
C

#include "defs.h"
SYS_FUNC(iopl)
{
tprintf("%d", (int) tcp->u_arg[0]);
return RVAL_DECODED;
}