diff options
Diffstat (limited to 'target-i386/helper2.c')
-rw-r--r-- | target-i386/helper2.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target-i386/helper2.c b/target-i386/helper2.c index 9d5d9b564e..ac7d0568b2 100644 --- a/target-i386/helper2.c +++ b/target-i386/helper2.c @@ -35,7 +35,10 @@ #include <linux/unistd.h> #include <linux/version.h> -_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount) +int modify_ldt(int func, void *ptr, unsigned long bytecount) +{ + return syscall(__NR_modify_ldt, func, ptr, bytecount); +} #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 66) #define modify_ldt_ldt_s user_desc |