summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2014-11-11 18:22:15 +0100
committerYabin Cui <yabinc@google.com>2014-11-13 01:51:45 +0100
commit678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c (patch)
tree38bae18a9d1681ecb0d848aa2bf30b512654a442
parentam 4f66469b: Merge "More test makefile cleanup." (diff)
downloadandroid_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.tar
android_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.tar.gz
android_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.tar.bz2
android_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.tar.lz
android_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.tar.xz
android_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.tar.zst
android_bootable_recovery-678f7d4a36eeae9a2c1bad6c861cecc2e5dab70c.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