1 2 3 4 5 6 7 8 9
#include <sys/io.h> #include "syscall.h" #ifdef SYS_iopl int iopl(int level) { return syscall(SYS_iopl, level); } #endif