diff options
author | Yabin Cui <yabinc@google.com> | 2015-01-26 19:48:54 -0800 |
---|---|---|
committer | Yabin Cui <yabinc@google.com> | 2015-01-27 14:23:22 -0800 |
commit | 4a6e5a3b641dd99b658c4c336490371a3a5ae180 (patch) | |
tree | 3048f441498f5d5aed8bb218ecaca5e9a80cbf40 /include/utils/Thread.h | |
parent | fb538fb13d930a7398695d1044ceaaf854949018 (diff) | |
download | system_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.h | 2 |
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 |