summaryrefslogtreecommitdiffstats
path: root/include/utils/Thread.h
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2015-01-26 19:48:54 -0800
committerYabin Cui <yabinc@google.com>2015-01-27 14:23:22 -0800
commit4a6e5a3b641dd99b658c4c336490371a3a5ae180 (patch)
tree3048f441498f5d5aed8bb218ecaca5e9a80cbf40 /include/utils/Thread.h
parentfb538fb13d930a7398695d1044ceaaf854949018 (diff)
downloadsystem_core-4a6e5a3b641dd99b658c4c336490371a3a5ae180.zip
system_core-4a6e5a3b641dd99b658c4c336490371a3a5ae180.tar.gz
system_core-4a6e5a3b641dd99b658c4c336490371a3a5ae180.tar.bz2
Kill HAVE_PTHREADS.
Bug: 19083585 Change-Id: Ic09eb3dd250bc5c5b63cac7998f99f5fa007f407
Diffstat (limited to 'include/utils/Thread.h')
-rw-r--r--include/utils/Thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utils/Thread.h b/include/utils/Thread.h
index c867e95..28839fd 100644
--- a/include/utils/Thread.h
+++ b/include/utils/Thread.h
@@ -21,7 +21,7 @@
#include <sys/types.h>
#include <time.h>
-#if defined(HAVE_PTHREADS)
+#if !defined(_WIN32)
# include <pthread.h>
#endif