/illumos-gate/usr/src/cmd/mdb/intel/amd64/kmdb/ |
H A D | kmdb_makecontext.c | 44 size_t stksize) 46 uintptr_t *stack = (uintptr_t *)(((uintptr_t)stk + stksize - 1) & 43 kmdb_makecontext(ucontext_t *ucp, void (*func)(void *), void *arg, caddr_t stk, size_t stksize) argument
|
/illumos-gate/usr/src/cmd/mdb/intel/ia32/kmdb/ |
H A D | kmdb_makecontext.c | 44 size_t stksize) 46 uintptr_t *stack = (uintptr_t *)((((uintptr_t)stk + stksize - 1) & 43 kmdb_makecontext(ucontext_t *ucp, void (*func)(void *), void *arg, caddr_t stk, size_t stksize) argument
|
/illumos-gate/usr/src/cmd/mdb/sparc/kmdb/ |
H A D | kmdb_makecontext.c | 45 size_t stksize) 51 uintptr_t stack = (((uintptr_t)stk + stksize - 1) & 44 kmdb_makecontext(ucontext_t *ucp, void (*func)(void *), void *arg, caddr_t stk, size_t stksize) argument
|
/illumos-gate/usr/src/lib/libfakekernel/common/ |
H A D | thread.c | 44 size_t stksize, 107 size_t stksize, 115 t = thread_create(stk, stksize, func, arg, len, NULL, TS_RUN, pri); 42 thread_create( caddr_t stk, size_t stksize, void (*func)(), void *arg, size_t len, struct proc *pp, int state, pri_t pri) argument 105 zthread_create( caddr_t stk, size_t stksize, void (*func)(), void *arg, size_t len, pri_t pri) argument
|
/illumos-gate/usr/src/lib/libc/amd64/threads/ |
H A D | machdep.c | 37 setup_top_frame(void *stk, size_t stksize, ulwp_t *ulwp) argument 50 stack = (uint64_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); 69 ulwp_t *ulwp, caddr_t stk, size_t stksize) 87 if ((stack = setup_top_frame(stk, stksize, ulwp)) == NULL) 68 setup_context(ucontext_t *ucp, void *(*func)(ulwp_t *), ulwp_t *ulwp, caddr_t stk, size_t stksize) argument
|
/illumos-gate/usr/src/lib/libc/sparc/threads/ |
H A D | machdep.c | 38 setup_top_frame(void *stk, size_t stksize, ulwp_t *ulwp) argument 47 stack = (((uintptr_t)stk + stksize) & ~(STACK_ALIGN - 1)) - 64 ulwp_t *ulwp, caddr_t stk, size_t stksize) 75 if ((stack = (uintptr_t)setup_top_frame(stk, stksize, ulwp)) == NULL) 63 setup_context(ucontext_t *ucp, void *(*func)(ulwp_t *), ulwp_t *ulwp, caddr_t stk, size_t stksize) argument
|
/illumos-gate/usr/src/cmd/sgs/m4/common/ |
H A D | m4ext.c | 35 int stksize = DEF_STKSIZE; /* call stack */ variable
|
H A D | m4.c | 180 stksize); 286 stksize); 376 stksize = atoi(&arg[2]); 377 if (stksize <= 0) { 378 stksize = DEF_STKSIZE; 456 callst = xcalloc(stksize/3+1, sizeof (struct call)); 457 Ap = argstk = xcalloc(stksize+3, sizeof (wchar_t *)); 462 astklm = (wchar_t *)(&argstk[stksize]);
|
H A D | m4.h | 143 extern int stksize;
|
/illumos-gate/usr/src/lib/libfakekernel/common/sys/ |
H A D | thread.h | 96 size_t stksize,
|
/illumos-gate/usr/src/lib/libc/i386/threads/ |
H A D | machdep.c | 49 setup_top_frame(void *stk, size_t stksize, ulwp_t *ulwp) argument 68 stack = (uint32_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); 89 ulwp_t *ulwp, caddr_t stk, size_t stksize) 133 if ((stack = setup_top_frame(stk, stksize, ulwp)) == NULL) 88 setup_context(ucontext_t *ucp, void *(*func)(ulwp_t *), ulwp_t *ulwp, caddr_t stk, size_t stksize) argument
|
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | pthr_attr.c | 43 0, /* stksize */ 128 * This is equivalent to stksize argument in thr_create(). 137 ap->stksize = stacksize; 154 *stacksize = ap->stksize; 452 ap->stksize = stacksize; 473 *stacksize = ap->stksize; 531 ap->stksize = target->ul_stksiz;
|
H A D | thr.c | 315 find_stack(size_t stksize, size_t guardsize) argument 344 if (stksize == 0) 345 stksize = DEFAULTSTACK - 2 * pagesize; 347 stksize = ((stksize + pagesize - 1) & -pagesize); 356 mapsize = stksize + guardsize; 408 ulwp->ul_stksiz = stksize; 559 _thrp_create(void *stk, size_t stksize, void *(*func)(void *), void *arg, argument 581 if ((stk || stksize) && stksize < MINSTAC 722 thr_create(void *stk, size_t stksize, void *(*func)(void *), void *arg, long flags, thread_t *new_thread) argument [all...] |
H A D | pthread.c | 130 error = _thrp_create(ap->stkaddr, ap->stksize, start_routine, arg,
|
/illumos-gate/usr/src/uts/common/disp/ |
H A D | thread.c | 325 size_t stksize, 352 if (stksize < default_stksize) 353 stksize = default_stksize; 355 if (stksize == default_stksize) { 358 stksize = roundup(stksize, PAGESIZE); 359 stk = (caddr_t)segkp_get(segkp, stksize, 372 if (stksize <= sizeof (kthread_t) + PTR24_ALIGN) 376 stksize -= SA(sizeof (kthread_t) + PTR24_ALIGN - 1); 377 stksize 323 thread_create( caddr_t stk, size_t stksize, void (*proc)(), void *arg, size_t len, proc_t *pp, int state, pri_t pri) argument [all...] |
/illumos-gate/usr/src/uts/sparc/os/ |
H A D | archdep.c | 408 exec_set_sp(size_t stksize) argument 414 stksize += sizeof (struct rwindow) + STACK_BIAS; 416 stksize += sizeof (struct rwindow32); 417 lwptoregs(lwp)->r_sp = (uintptr_t)curproc->p_usrstack - stksize;
|
/illumos-gate/usr/src/lib/libtnfprobe/ |
H A D | probe_cntl.c | 67 size_t stksize, 256 size_t stksize, 282 return ((*real_thr_create)(stk, stksize, probestart, (void *) arg_p, 255 thr_create(void *stk, size_t stksize, void * (*real_func)(void *), void *real_arg, long flags, thread_t *new_thread) argument
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | lwp.c | 103 size_t stksize; local 159 if (curlwp == NULL || (stksize = curlwp->lwp_childstksz) == 0) 160 stksize = lwp_default_stksize; 166 * stksize and lwpdata to 0 in order to let thread_create() 170 stksize = 0; 173 } else if (stksize == lwp_default_stksize) { 212 stksize = roundup(stksize, PAGESIZE); 213 if ((lwpdata = (caddr_t)segkp_get(segkp, stksize, 230 t = thread_create(lwpdata, stksize, NUL [all...] |
/illumos-gate/usr/src/cmd/fs.d/nfs/nfs4cbd/ |
H A D | nfs4cbd.c | 172 cb_svcpool.stksize = 0;
|
/illumos-gate/usr/src/uts/common/avs/ns/rdc/ |
H A D | rdcsrv.c | 322 p.stksize = 0;
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | svc.c | 600 uint_t qsize, uint_t timeout, uint_t stksize, uint_t max_same_xprt) 614 if (stksize == 0) 615 stksize = svc_default_stksize; 636 lwp->lwp_childstksz = stksize; 642 pool->p_stksize = stksize; 699 args->qsize, args->timeout, args->stksize, args->max_same_xprt); 599 svc_pool_init(SVCPOOL *pool, uint_t maxthreads, uint_t redline, uint_t qsize, uint_t timeout, uint_t stksize, uint_t max_same_xprt) argument
|
H A D | svc.h | 655 uint32_t stksize; /* svc_run() stack size */ member in struct:svcpool_args
|
/illumos-gate/usr/src/cmd/fs.d/nfs/lockd/ |
H A D | lockd.c | 438 npa.stksize = 0;
|
/illumos-gate/usr/src/lib/libc/inc/ |
H A D | thr_uberdata.h | 1222 size_t stksize; member in struct:_thrattr 1288 ulwp_t *ulwp, caddr_t stk, size_t stksize);
|
/illumos-gate/usr/src/cmd/fs.d/nfs/nfsd/ |
H A D | nfsd.c | 634 npa.stksize = 0;
|