mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-03 03:35:37 +00:00
debug/p/debug_native: don't waitpid only on IOS
waitpid is necessary on OS X.
This commit is contained in:
parent
11ce2c5031
commit
6420f03107
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user