mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173355 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
91e22b0dd3
commit
41d35a335e
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user