Home
last modified time | relevance | path

Searched refs:default_stksize (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/disp/
H A Dthread.c125 int default_stksize; variable
245 if (default_stksize == 0) { in thread_init()
246 default_stksize = DEFAULTSTKSZ; in thread_init()
248 default_stksize > MAX_STKSIZE || in thread_init()
249 default_stksize < MIN_STKSIZE) { in thread_init()
252 default_stksize = DEFAULTSTKSZ; in thread_init()
254 lwp_default_stksize = default_stksize; in thread_init()
263 default_stksize); in thread_init()
354 if (stksize < default_stksize) in thread_create()
355 stksize = default_stksize; in thread_create()
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dthread.h609 extern int default_stksize;
/illumos-gate/usr/src/uts/common/io/mac/
H A Dmac_datapath_setup.c2224 mac_srs->srs_worker = thread_create(NULL, default_stksize << 1, in mac_srs_create()