summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2014-11-14 01:47:19 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-14 01:47:19 +0100
commit84b2cbee2a622309e98640662e20c7e9c4312df3 (patch)
treea421592fb17bf0045501b21694a3ebc69c184a5c
parentam 8bebe58e: am 2020564f: am be81e51c: Use more aggressive sync writing to applypatch. (diff)
parentam 92242c70: Merge "kill HAVE_FORKEXEC" (diff)
downloadandroid_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.tar
android_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.tar.gz
android_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.tar.bz2
android_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.tar.lz
android_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.tar.xz
android_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.tar.zst
android_bootable_recovery-84b2cbee2a622309e98640662e20c7e9c4312df3.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