Lines Matching refs:stksize
103 size_t stksize;
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, NULL, NULL, 0, p, TS_STOPPED, pri);
254 if (!CLASS_KERNEL(cid) && stksize == lwp_default_stksize)