summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Support/ManagedStatic.cpp
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-01-24 15:29:27 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-01-24 15:29:27 +0000
commitcbc86bcbb59e9db635600d1aba277413bb09d0cb (patch)
treef42b1a9366a9a3bab54c6a0840fb11d39d302e16 /llvm/unittests/Support/ManagedStatic.cpp
parent130a91e494952882b027043cc3798304a0f7e019 (diff)
downloadbcm5719-llvm-cbc86bcbb59e9db635600d1aba277413bb09d0cb.tar.gz
bcm5719-llvm-cbc86bcbb59e9db635600d1aba277413bb09d0cb.zip
unittests/SupportTests/Initialize.MultipleThreads: Enable pthread_attr_setstack(3) only on Linux.
I got blamed on darwin11; unittests/Support/ManagedStatic.cpp:35: error: 'pthread_attr_setstack' was not declared in this scope llvm-svn: 173355
Diffstat (limited to 'llvm/unittests/Support/ManagedStatic.cpp')
-rw-r--r--llvm/unittests/Support/ManagedStatic.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/Support/ManagedStatic.cpp b/llvm/unittests/Support/ManagedStatic.cpp
index b1df2bd6d21..a4137619f4d 100644
--- a/llvm/unittests/Support/ManagedStatic.cpp
+++ b/llvm/unittests/Support/ManagedStatic.cpp
@@ -32,7 +32,9 @@ namespace test1 {
void *allocate_stack(pthread_attr_t &a, size_t n = 65536) {
void *stack = malloc(n);
pthread_attr_init(&a);
+#if defined(__linux__)
pthread_attr_setstack(&a, stack, n);
+#endif
return stack;
}
}
OpenPOWER on IntegriCloud