[sanitize] Remove stack size limits from secondary threads.
If pthread_attr_getstack tell us the stack is 2G, why would we doubt that? Differential Revision: https://reviews.llvm.org/D34169 llvm-svn: 305330
This commit is contained in:
parent
36559b2527
commit
cde90a66b5
|
|
@ -113,7 +113,6 @@ void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
|
||||||
my_pthread_attr_getstack(&attr, &stackaddr, &stacksize);
|
my_pthread_attr_getstack(&attr, &stackaddr, &stacksize);
|
||||||
pthread_attr_destroy(&attr);
|
pthread_attr_destroy(&attr);
|
||||||
|
|
||||||
CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check.
|
|
||||||
*stack_top = (uptr)stackaddr + stacksize;
|
*stack_top = (uptr)stackaddr + stacksize;
|
||||||
*stack_bottom = (uptr)stackaddr;
|
*stack_bottom = (uptr)stackaddr;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue