diff options
Diffstat (limited to 'src/linux/iopl.c')
-rw-r--r-- | src/linux/iopl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/linux/iopl.c b/src/linux/iopl.c new file mode 100644 index 00000000..5a626e16 --- /dev/null +++ b/src/linux/iopl.c @@ -0,0 +1,9 @@ +#include <sys/io.h> +#include "syscall.h" + +#ifdef SYS_iopl +int iopl(int level) +{ + return syscall(SYS_iopl, level); +} +#endif |