summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2014-11-13 19:14:54 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-11-13 19:14:54 +0100
commit92242c704846f28932e555dba800f4a701063896 (patch)
tree38bae18a9d1681ecb0d848aa2bf30b512654a442
parentam 4f66469b: Merge "More test makefile cleanup." (diff)
parentkill HAVE_FORKEXEC (diff)
downloadandroid_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
-rw-r--r--minadbd/adb.c2
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