Home
last modified time | relevance | path

Searched refs:stacksize (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/lib/libc/port/threads/
H A Dpthr_attr.c127 pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize) in pthread_attr_setstacksize() argument
132 stacksize >= MINSTACK) { in pthread_attr_setstacksize()
133 ap->stksize = stacksize; in pthread_attr_setstacksize()
144 pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize) in pthread_attr_getstacksize() argument
149 stacksize != NULL) { in pthread_attr_getstacksize()
150 *stacksize = ap->stksize; in pthread_attr_getstacksize()
440 void *stackaddr, size_t stacksize) in pthread_attr_setstack() argument
445 stacksize >= MINSTACK) { in pthread_attr_setstack()
447 ap->stksize = stacksize; in pthread_attr_setstack()
449 setup_top_frame(stackaddr, stacksize, NULL) == NULL) in pthread_attr_setstack()
[all …]
/titanic_41/usr/src/lib/libcurses/screen/
H A Dtparm.c99 int stacksize; member
119 if (st->top >= (st->stacksize - 1)) { in push()
120 st->stacksize += MAX; in push()
122 (st->stacksize * sizeof (long)))) == NULL) { in push()
155 st->stacksize = MAX; in init_stack()
/titanic_41/usr/src/cmd/fs.d/cachefs/mdbug/
H A Ddbug.c136 ulong_t stacksize; in dbug_object_create() local
215 stacksize = (ulong_t)this; in dbug_object_create()
217 stacksize = tdp->td_stackinit - stacksize; in dbug_object_create()
219 stacksize = stacksize - tdp->td_stackinit; in dbug_object_create()
232 dbug_object_p->d_func, stacksize); in dbug_object_create()
/titanic_41/usr/src/lib/libc/port/tpool/
H A Dthread_pool.c241 size_t stacksize; in tpool_create() local
250 if (pthread_attr_getstack(attr, &stackaddr, &stacksize) != 0) { in tpool_create()
260 if (stacksize < minstack || max_threads != 1) { in tpool_create()
264 } else if (stacksize != 0 && stacksize < minstack) { in tpool_create()
/titanic_41/usr/src/cmd/syslogd/
H A Dsyslogd.c208 static size_t stacksize; /* thread stack size */ variable
2988 (void) pthread_attr_setstacksize(&log_attr, stacksize); in init()
2990 stack_ptr += stacksize + redzonesize; in init()
3008 (void) pthread_attr_setstacksize(&sys_attr, stacksize); in init()
3010 stack_ptr += stacksize + redzonesize; in init()
3034 (void) pthread_attr_setstacksize(&hnl_attr, stacksize); in init()
3036 stack_ptr += stacksize + redzonesize; in init()
3044 (void) pthread_attr_setstacksize(&net_attr, stacksize); in init()
3046 stack_ptr += stacksize + redzonesize; in init()
3369 (void) pthread_attr_setstacksize(&stack_attr, stacksize); in filed_init()
[all …]
/titanic_41/usr/src/lib/libsqlite/tool/
H A Dlemon.c247 char *stacksize; /* Size of the parser stack */ member
1365 lem.stacksize = 0;
2145 psp->declargslot = &(psp->gp->stacksize);
3217 if( lemp->stacksize ){
3218 if( atoi(lemp->stacksize)<=0 ){
3221 lemp->stacksize);
3223 lemp->stacksize = "100";
3225 fprintf(out,"#define YYSTACKDEPTH %s\n",lemp->stacksize); lineno++;