Home | History | Annotate | Download | only in libpthread

Lines Matching defs:guard

59 	size_t guardsize;	/* default guard size */
111 * Return the default guard size for threads created with
162 * be a stack guard (i.e., it should be empty), adjusting the
163 * requested bounds by the default stack guard size will leave us
273 * _does not_ have access to the start or end of its stack guard,
282 void *addr, *guard;
286 * Get the the stack and stack guard parameters.
293 * Determine where the guard starts in virtual address space
297 guard = (char *)addr + size;
299 guard = (char *)addr - guardsize;
309 * Verify no access to the start or end of the stack guard.
311 checksigsegv(guard);
312 checksigsegv((char *)guard + guardsize - 1);
349 * guard size to a user-allocated stack address. This is
444 * (b) no access to its own guard pages;
473 * Note: We can't say anything about the guard size, because
474 * with pthread_attr_setstack, the guard size is ignored, and
475 * it's not clear from POSIX whether any meaningful guard size