diff options
author | Yabin Cui <yabinc@google.com> | 2014-11-13 19:14:54 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-11-13 19:14:54 +0100 |
commit | 92242c704846f28932e555dba800f4a701063896 (patch) | |
tree | 38bae18a9d1681ecb0d848aa2bf30b512654a442 /minadbd | |
parent | am 4f66469b: Merge "More test makefile cleanup." (diff) | |
parent | kill HAVE_FORKEXEC (diff) | |
download | android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.tar android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.tar.gz android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.tar.bz2 android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.tar.lz android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.tar.xz android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.tar.zst android_bootable_recovery-92242c704846f28932e555dba800f4a701063896.zip |
Diffstat (limited to 'minadbd')
-rw-r--r-- | minadbd/adb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minadbd/adb.c b/minadbd/adb.c index 127d072be..0ac16e4d9 100644 --- a/minadbd/adb.c +++ b/minadbd/adb.c @@ -379,7 +379,7 @@ static void adb_cleanup(void) int adb_main() { atexit(adb_cleanup); -#if defined(HAVE_FORKEXEC) +#if !defined(_WIN32) // No SIGCHLD. Let the service subproc handle its children. signal(SIGPIPE, SIG_IGN); #endif |