Lines Matching full:stacksize
480 uptr stacksize = 0;
481 internal_pthread_attr_getstack(attr, (void **)&stackaddr, &stacksize);
482 // GLibC will return (0 - stacksize) as the stack address in the case when
483 // stacksize is set, but stackaddr is not.
484 bool stack_set = (stackaddr != 0) && (stackaddr + stacksize != 0);
487 if (stacksize < minstacksize) {
489 if (stacksize != 0) {
490 VPrintf(1, "Sanitizer: increasing stacksize %zu->%zu\n", stacksize,
496 "%zu < %zu\n", stacksize, minstacksize);