Loading libcutils/include/cutils/threads.h +2 −0 Original line number Diff line number Diff line Loading @@ -31,7 +31,9 @@ extern "C" { // // Deprecated: use android::base::GetThreadId instead, which doesn't truncate on Mac/Windows. // #if !defined(__GLIBC__) || __GLIBC__ >= 2 && __GLIBC_MINOR__ < 32 extern pid_t gettid(); #endif #ifdef __cplusplus } Loading libcutils/threads.cpp +2 −1 Original line number Diff line number Diff line Loading @@ -25,8 +25,9 @@ #include <windows.h> #endif #if defined(__BIONIC__) #if defined(__BIONIC__) || defined(__GLIBC__) && __GLIBC_MINOR__ >= 32 // No definition needed for Android because we'll just pick up bionic's copy. // No definition needed for Glibc >= 2.32 because it exposes its own copy. #else pid_t gettid() { #if defined(__APPLE__) Loading Loading
libcutils/include/cutils/threads.h +2 −0 Original line number Diff line number Diff line Loading @@ -31,7 +31,9 @@ extern "C" { // // Deprecated: use android::base::GetThreadId instead, which doesn't truncate on Mac/Windows. // #if !defined(__GLIBC__) || __GLIBC__ >= 2 && __GLIBC_MINOR__ < 32 extern pid_t gettid(); #endif #ifdef __cplusplus } Loading
libcutils/threads.cpp +2 −1 Original line number Diff line number Diff line Loading @@ -25,8 +25,9 @@ #include <windows.h> #endif #if defined(__BIONIC__) #if defined(__BIONIC__) || defined(__GLIBC__) && __GLIBC_MINOR__ >= 32 // No definition needed for Android because we'll just pick up bionic's copy. // No definition needed for Glibc >= 2.32 because it exposes its own copy. #else pid_t gettid() { #if defined(__APPLE__) Loading