summaryrefslogtreecommitdiff
path: root/tests/core_get_client_auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core_get_client_auth.c')
-rw-r--r--tests/core_get_client_auth.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/core_get_client_auth.c b/tests/core_get_client_auth.c
index 676083d5..9c64699d 100644
--- a/tests/core_get_client_auth.c
+++ b/tests/core_get_client_auth.c
@@ -51,12 +51,10 @@ is_local_tid(pid_t tid)
{
#ifndef __linux__
return pthread_self() == tid;
-#elif !defined(ANDROID)
+#else
/* On Linux systems, drmGetClient() would return the thread ID
instead of the actual process ID */
return syscall(SYS_gettid) == tid;
-#else
- return gettid() == tid;
#endif
}