aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-11-10 20:00:43 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-11-10 20:00:43 +0000
commit37bfdf5c569863fb5b4ecf3b098b0b4615e9a265 (patch)
treeb97d703b79aa2d0d0e3edf85e0e0948fbe8578df
parente5e796352c04ed005d34367fbb737e7c3b300e00 (diff)
parent90712b811f65513dd106b816801193584dbc378c (diff)
downloadlibcore-android-platform-12.0.0_r20.tar.gz
Change-Id: I67f164298343ad03eb390870166f7a68237afc44
-rw-r--r--ojluni/src/main/native/UNIXProcess_md.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ojluni/src/main/native/UNIXProcess_md.c b/ojluni/src/main/native/UNIXProcess_md.c
index 40fdc18fb8a..a3790e8c5f1 100644
--- a/ojluni/src/main/native/UNIXProcess_md.c
+++ b/ojluni/src/main/native/UNIXProcess_md.c
@@ -119,8 +119,7 @@
#ifndef START_CHILD_USE_VFORK
// Android-changed: disable vfork under AddressSanitizer.
// #ifdef __linux__
- #if defined(__linux__) && !__has_feature(address_sanitizer) && \
- !__has_feature(hwaddress_sanitizer)
+ #if defined(__linux__) && !__has_feature(address_sanitizer)
#define START_CHILD_USE_VFORK 1
#else
#define START_CHILD_USE_VFORK 0