[android] do not use tkill on android/amd64(x86_64) as well
authorRadek Doulik <rodo@xamarin.com>
Wed, 4 Feb 2015 08:52:01 +0000 (09:52 +0100)
committerRadek Doulik <rodo@xamarin.com>
Wed, 4 Feb 2015 08:54:00 +0000 (09:54 +0100)
mono/metadata/threads.c
mono/utils/mono-threads-posix.c

index 4f86197699d574a9dbec27e42828b4ece60efa23..5c9a7dc22da7165a2709314aec2e9e0e86417856 100644 (file)
@@ -47,7 +47,7 @@
 #include <signal.h>
 #endif
 
-#if defined(PLATFORM_ANDROID) && !defined(TARGET_ARM64)
+#if defined(PLATFORM_ANDROID) && !defined(TARGET_ARM64) && !defined(TARGET_AMD64)
 #define USE_TKILL_ON_ANDROID 1
 #endif
 
index a32f5a9ff9cfca04767515abcbb7c55302ed99b3..9aa28fba74de0e2f57e12c56a2bd72ae651845b0 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <errno.h>
 
-#if defined(PLATFORM_ANDROID) && !defined(TARGET_ARM64)
+#if defined(PLATFORM_ANDROID) && !defined(TARGET_ARM64) && !defined(TARGET_AMD64)
 #define USE_TKILL_ON_ANDROID 1
 #endif