diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-05 15:50:23 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-05 15:50:23 +0000 |
commit | 166326c6ccd6f6925185967a0786ca58ce81a535 (patch) | |
tree | aa0737719b94e2df060f5fbe48a66516908b2010 /base/logging.cc | |
parent | 8c075b366aaa89082b0b642044015377ccdf9794 (diff) | |
download | chromium_src-166326c6ccd6f6925185967a0786ca58ce81a535.zip chromium_src-166326c6ccd6f6925185967a0786ca58ce81a535.tar.gz chromium_src-166326c6ccd6f6925185967a0786ca58ce81a535.tar.bz2 |
Including pthread.h, compile fix for Android.
pthread.h does not get including through the other include files on Android.
Original change: http://codereview.chromium.org/2808076/show, landing on behalf of Kristian.
Review URL: http://codereview.chromium.org/3007034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.cc')
-rw-r--r-- | base/logging.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/logging.cc b/base/logging.cc index 09decbb..7622fbee 100644 --- a/base/logging.cc +++ b/base/logging.cc @@ -25,6 +25,7 @@ typedef HANDLE MutexHandle; #if defined(OS_POSIX) #include <errno.h> +#include <pthread.h> #include <stdlib.h> #include <stdio.h> #include <string.h> |