procattr.c: Use __ANDROID__ instead of ANDROID
When code is compiled within the Android tree, the resulting binaries are intended to run either on the "host" (the machine doing the building) or the "target" (the machine running the Android operating system). "ANDROID" is defined if the code is being compiled for the host or the target, whereas "__ANDROID__" is only defined for code being compiled for the target. (yes, I agree, this is not obvious). gettid() is only declared in the target environment, not the host environment, so adjust the #ifdef to properly emit the gettid() definition for binaries targeting the host. Signed-off-by: Nick Kralevich <nnk@google.com>
This commit is contained in:
parent
bb96e1305d
commit
044f6ef104
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ static pthread_key_t destructor_key;
|
|||
static int destructor_key_initialized = 0;
|
||||
static __thread char destructor_initialized;
|
||||
|
||||
#ifndef ANDROID
|
||||
#ifndef __ANDROID__
|
||||
/* Android declares this in unistd.h and has a definition for it */
|
||||
static pid_t gettid(void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue