summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2014-11-13 20:10:18 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-13 20:10:18 +0100
commit82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb (patch)
tree86817e8c01cdd32f78d25533482ed538f841aea7
parentam 2020564f: am be81e51c: Use more aggressive sync writing to applypatch. (diff)
parentMerge "kill HAVE_FORKEXEC" (diff)
downloadandroid_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.tar
android_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.tar.gz
android_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.tar.bz2
android_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.tar.lz
android_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.tar.xz
android_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.tar.zst
android_bootable_recovery-82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb.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