SHA256
1
0
forked from pool/qemu
qemu/0027-ignore-timer-create.patch
2011-11-10 13:06:55 +00:00

17 lines
547 B
Diff

Index: qemu-0.14.1/linux-user/syscall.c
===================================================================
--- qemu-0.14.1.orig/linux-user/syscall.c
+++ qemu-0.14.1/linux-user/syscall.c
@@ -7423,6 +7423,11 @@ typedef struct sPAPREnvironment sPAPREnv
break;
#endif
+#if defined(TARGET_NR_timer_create)
+ case TARGET_NR_set_tid_address:
+ goto unimplemented_nowarn;
+#endif
+
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
case TARGET_NR_tkill:
ret = get_errno(sys_tkill((int)arg1, target_to_host_signal(arg2)));