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
This commit is contained in:
NAKAMURA Takumi 2013-01-24 15:29:27 +00:00
parent 130a91e494
commit cbc86bcbb5

View File

@ -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;
}
}