Searched refs:stacksize (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.10.1/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_attr_setstacksize.c87 dcethread_attr_setstacksize(dcethread_attr *attr, size_t stacksize) argument
89 size_t new_stacksize = stacksize;
107 dcethread_attr_setstacksize_throw(dcethread_attr *attr, size_t stacksize) argument
109 DCETHREAD_WRAP_THROW(dcethread_attr_setstacksize(attr, stacksize));
H A Ddcethread_attr_getstacksize.c87 size_t stacksize; local
89 if (dcethread__set_errno(pthread_attr_getstacksize(attr, &stacksize)))
95 return (ssize_t)stacksize;
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/pthreads/
H A Dthread.c36 size_t stacksize; local
43 ret = pthread_attr_getstacksize(&attr, &stacksize);
47 if (stacksize < THREAD_MINSTACKSIZE) {
/macosx-10.10.1/ntp-92/lib/isc/pthreads/
H A Dthread.c36 size_t stacksize; local
43 ret = pthread_attr_getstacksize(&attr, &stacksize);
47 if (stacksize < THREAD_MINSTACKSIZE) {
/macosx-10.10.1/apr-32/apr/apr/include/arch/os2/
H A Dapr_arch_threadproc.h31 apr_size_t stacksize; member in struct:apr_threadattr_t
/macosx-10.10.1/apr-32/apr/apr/threadproc/win32/
H A Dthread.c43 (*new)->stacksize = 0;
63 apr_size_t stacksize)
65 attr->stacksize = stacksize;
110 (DWORD) (attr ? attr->stacksize : 0),
117 attr && attr->stacksize > 0 ? attr->stacksize : 0,
/macosx-10.10.1/apr-32/apr/apr/include/arch/win32/
H A Dapr_arch_threadproc.h39 apr_size_t stacksize; member in struct:apr_threadattr_t
/macosx-10.10.1/libpthread-105.1.4/src/
H A Dpthread.c154 size_t stacksize,
175 extern void thread_start(pthread_t self, mach_port_t kport, void *(*fun)(void *), void * funarg, size_t stacksize, unsigned int flags);
247 size_t stacksize = 0; local
249 PTHREAD_ASSERT(attrs->stacksize >= PTHREAD_STACK_MIN);
262 stacksize = attrs->stacksize;
263 allocsize = stacksize + guardsize + pthreadsize;
295 t = (void *)(allocaddr + stacksize + guardsize);
296 if (stacksize) {
432 attr->stacksize
553 pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize) argument
564 pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize) argument
577 pthread_attr_getstack(const pthread_attr_t *attr, void **stackaddr, size_t * stacksize) argument
591 pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr, size_t stacksize) argument
646 _pthread_start(pthread_t self, mach_port_t kport, void *(*fun)(void *), void *arg, size_t stacksize, unsigned int pflags) argument
682 _pthread_struct_init(pthread_t t, const pthread_attr_t *attrs, void *stack, size_t stacksize, int kernalloc) argument
1592 size_t stacksize = DFLSSIZ; local
[all...]
H A Dmk_pthread_impl.c87 printf("#define __PTHREAD_stacksize_OFFSET__ %zd\n", offsetof(struct _pthread, stacksize));
H A Dinternal.h172 size_t stacksize; // size of stack (page multiple and >= PTHREAD_STACK_MIN) member in struct:_pthread
195 size_t stacksize; // stack size; multiple of vm_page_size and >= PTHREAD_STACK_MIN member in struct:_pthread_attr_t
455 _pthread_start(pthread_t self, mach_port_t kport, void *(*fun)(void *), void * funarg, size_t stacksize, unsigned int flags);
/macosx-10.10.1/apr-32/apr/apr/threadproc/os2/
H A Dthread.c37 (*new)->stacksize = 0;
57 apr_size_t stacksize)
59 attr->stacksize = stacksize;
109 thread->attr->stacksize > 0 ?
110 thread->attr->stacksize : APR_THREAD_STACKSIZE,
/macosx-10.10.1/apr-32/apr/apr/threadproc/netware/
H A Dthread.c55 apr_size_t stacksize)
57 attr->stack_size = stacksize;
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Dfork.c180 size_t stacksize; local
402 stacksize = (char*)__fork_stack_begin - (char*)__fork_stack_end;
405 (u_long)stacksize,
/macosx-10.10.1/apr-32/apr/apr/threadproc/unix/
H A Dthread.c105 apr_size_t stacksize)
109 stat = pthread_attr_setstacksize(&attr->attr, stacksize);
/macosx-10.10.1/apr-32/apr/apr/threadproc/beos/
H A Dthread.c54 apr_size_t stacksize)
/macosx-10.10.1/OpenSSL098-52/src/crypto/threads/
H A Dnetware.bat32 set LFLAGS=-msgstyle gcc -zerobss -stacksize 32768 -nostdlib -sym internal
/macosx-10.10.1/apache-793/httpd/server/mpm/mpmt_os2/
H A Dmpmt_os2_child.c294 int stacksize = ap_thread_stacksize == 0 ? 128*1024 : ap_thread_stacksize; local
301 _beginthread(worker_main, NULL, stacksize, (void *)thread_slot);
/macosx-10.10.1/apr-32/apr/apr/include/
H A Dapr_thread_proc.h238 * @param stacksize The stack size in bytes
241 apr_size_t stacksize);
/macosx-10.10.1/apache-793/httpd/build/
H A DNWGNUtail.inc286 @echo $(DL)stacksize $(subst K,000,$(subst k,K,$(strip $(NLM_STACK_SIZE))))$(DL)>> $(@:.opt=.def)
/macosx-10.10.1/apr-32/apr/apr/build/
H A DNWGNUtail.inc324 @echo $(DL)stacksize $(subst K,000,$(subst k,K,$(strip $(NLM_STACK_SIZE))))$(DL)>> $(@:.opt=.def)
/macosx-10.10.1/dcerpc-61/dcerpc/include/dce/
H A Ddcethread.h188 int dcethread_attr_setstacksize(dcethread_attr *attr, size_t stacksize);
189 int dcethread_attr_setstacksize_throw(dcethread_attr *attr, size_t stacksize);
/macosx-10.10.1/tcl-105/tcl_ext/thread/thread/generic/
H A DthreadCmd.c237 int stacksize,
1562 ThreadCreate(interp, script, stacksize, flags, preserve)
1565 int stacksize; /* Zero for default size */
1582 stacksize, flags) != TCL_OK) {
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/mach-o/
H A Dloader.h1422 * of main(). If -stack_size was used at link time, the stacksize
1429 uint64_t stacksize;/* if not zero, initial stack size */ member in struct:entry_point_command
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/
H A Dnamed.conf181 stacksize 231;
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dchill.vim28 syn keyword chillProcess START start STACKSIZE stacksize PRIORITY priority THIS this STOP stop

Completed in 173 milliseconds

12