debug/p/debug_native: don't waitpid only on IOS

waitpid is necessary on OS X.
This commit is contained in:
Riccardo Schirone 2015-10-15 22:13:12 +02:00
parent 11ce2c5031
commit 6420f03107

View File

@ -269,7 +269,7 @@ static int r_debug_native_wait (RDebug *dbg, int pid) {
if (pid == -1) {
status = R_DEBUG_REASON_UNKNOWN;
} else {
#if __APPLE__
#if __APPLE__ && (__arm__ || __arm64__ || __aarch64__)
// eprintf ("No waitpid here :D\n");
status = R_DEBUG_REASON_UNKNOWN;
#else