Dmitry V. Levin
dcd00c3943
* iopl.c: New file. * Makefile.am (strace_SOURCES): Add it. * linux/dummy.h (sys_iopl): Remove stub alias.
9 lines
98 B
C
9 lines
98 B
C
#include "defs.h"
|
|
|
|
SYS_FUNC(iopl)
|
|
{
|
|
tprintf("%d", (int) tcp->u_arg[0]);
|
|
|
|
return RVAL_DECODED;
|
|
}
|