Home
last modified time | relevance | path

Searched refs:guardsize (Results 1 – 4 of 4) sorted by relevance

/support/
A Dsupport_stack_alloc.c56 size_t guardsize = roundup (MAX (2 * stacksize, 1024 * 1024), pagesize); in support_stack_alloc() local
57 size_t alloc_size = guardsize + stacksize + guardsize; in support_stack_alloc()
72 xmprotect (alloc_base + guardsize, stacksize, prot); in support_stack_alloc()
73 memset (alloc_base + guardsize, 0xA5, stacksize); in support_stack_alloc()
74 return (struct support_stack) { alloc_base + guardsize, stacksize, guardsize }; in support_stack_alloc()
80 void *alloc_base = (void *)((uintptr_t) stack->stack - stack->guardsize); in support_stack_free()
81 size_t alloc_size = stack->size + 2 * stack->guardsize; in support_stack_free()
A Dxpthread_attr_setguardsize.c22 xpthread_attr_setguardsize (pthread_attr_t *attr, size_t guardsize) in xpthread_attr_setguardsize() argument
25 pthread_attr_setguardsize (attr, guardsize)); in xpthread_attr_setguardsize()
A Dxthread.h85 size_t guardsize);
A Dsupport.h204 size_t guardsize; member

Completed in 6 milliseconds