Dirk Mueller
0a351e77e8
- only ignore specific timer_create syscall, no all of them (forwarded request 90590 from algraf) OBS-URL: https://build.opensuse.org/request/show/90739 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=28
17 lines
547 B
Diff
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)));
|