Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:stacksize

310   uptr stacksize = 0;
311 my_pthread_attr_getstack(attr, (void**)&stackaddr, &stacksize);
312 // GLibC will return (0 - stacksize) as the stack address in the case when
313 // stacksize is set, but stackaddr is not.
314 bool stack_set = (stackaddr != 0) && (stackaddr + stacksize != 0);
317 if (stacksize < minstacksize) {
319 if (stacksize != 0) {
320 VPrintf(1, "Sanitizer: increasing stacksize %zu->%zu\n", stacksize,
326 "%zu < %zu\n", stacksize, minstacksize);