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:
Nick Kralevich 2016-11-23 18:47:10 -08:00 committed by Stephen Smalley
parent bb96e1305d
commit 044f6ef104

View file

@ -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)
{