diff options
author | Yabin Cui <yabinc@google.com> | 2014-11-13 20:10:18 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-13 20:10:18 +0100 |
commit | 82ca0ba805307f2c8bf4a3abb03fd7e1b5213ccb (patch) | |
tree | 86817e8c01cdd32f78d25533482ed538f841aea7 /minadbd | |
parent | am 2020564f: am be81e51c: Use more aggressive sync writing to applypatch. (diff) | |
parent | Merge "kill HAVE_FORKEXEC" (diff) | |
download | android_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 |
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 |