1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix Windows build, don't try to #include <pthread.h> when we know it's not

available.

llvm-svn: 144574
This commit is contained in:
Nick Lewycky 2011-11-14 22:10:23 +00:00
parent 95e735afa7
commit d12c8cc065

View File

@ -8,7 +8,10 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/Threading.h"
#include "llvm/Config/config.h"
#ifdef HAVE_PTHREAD_H
#include <pthread.h>
#endif
#include "gtest/gtest.h"
@ -16,6 +19,7 @@ using namespace llvm;
namespace {
#ifdef HAVE_PTHREAD_H
namespace test1 {
llvm::ManagedStatic<int> ms;
void *helper(void*) {
@ -35,5 +39,6 @@ TEST(Initialize, MultipleThreads) {
pthread_join(t2, NULL);
llvm_stop_multithreaded();
}
#endif
} // anonymous namespace