Searched defs:guardsize (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/threads/
H A Dpthr_attr.c37 * Note that the 'guardsize' field is initialized on the first call.
51 0 /* guardsize */
53 if (thrattr.guardsize == 0)
54 thrattr.guardsize = _sysconf(_SC_PAGESIZE);
407 * pthread_attr_setguardsize: sets the guardsize
410 pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize) argument
415 ap->guardsize = guardsize;
423 * pthread_attr_getguardsize: gets the guardsize
426 pthread_attr_getguardsize(const pthread_attr_t *attr, size_t *guardsize) argument
[all...]
H A Dthr.c233 size_t guardsize = ulwp->ul_guardsize; local
241 ulwp->ul_guardsize = guardsize;
315 find_stack(size_t stksize, size_t guardsize) argument
352 * so we deduct that from the value of guardsize.
354 if (guardsize != 0)
355 guardsize = ((guardsize + pagesize - 1) & -pagesize) - pagesize;
356 mapsize = stksize + guardsize;
363 ulwp->ul_guardsize == guardsize &&
406 ulwp->ul_guardsize = guardsize;
559 _thrp_create(void *stk, size_t stksize, void *(*func)(void *), void *arg, long flags, thread_t *new_thread, size_t guardsize) argument
[all...]
/illumos-gate/usr/src/lib/libc/inc/
H A Dthr_uberdata.h1230 size_t guardsize; member in struct:_thrattr

Completed in 67 milliseconds