Searched refs:stacksize (Results 1 - 24 of 24) sorted by last modified time

/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dumsmemory.tex182 %C-shell command {\tt limit stacksize <size>} can be used to specify its size.
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dmem.c1181 word stacksize = RoundTo(ec_options.localsize + ec_options.globalsize, local
1193 start_stack_area = start_shared_area - stacksize;
1211 start_shared_heap = start_stack_area + stacksize;
/barrelfish-2018-10-04/lib/posixcompat/
H A Dpthreads.c110 size_t stacksize = THREADS_DEFAULT_STACK_BYTES; local
113 stacksize = (*attr)->stacksize;
142 (*pthread)->core, start_pthread, *pthread, stacksize, &nt);
194 (*attr)->stacksize = THREADS_DEFAULT_STACK_BYTES;
843 int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize) argument
845 *stacksize = (*attr)->stacksize;
849 int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize) argument
851 (*attr)->stacksize
[all...]
H A Dpthreads_private.h8 int stacksize; member in struct:pthread_attr
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/threads/
H A Dnetware.bat32 set LFLAGS=-msgstyle gcc -zerobss -stacksize 32768 -nostdlib -sym internal
/barrelfish-2018-10-04/lib/lwip2/src/
H A Dsys_arch.c314 void *arg, int stacksize, int prio)
335 // TODO: do something with the rest of the arguments (name, stacksize, prio)
/barrelfish-2018-10-04/lib/lwip/src/
H A Dsys_arch.c304 void *arg, int stacksize, int prio)
325 // TODO: do something with the rest of the arguments (name, stacksize, prio)
303 sys_thread_new(char *name, void (* thread)(void *arg), void *arg, int stacksize, int prio) argument
/barrelfish-2018-10-04/lib/lua/src/
H A Dlvm.c555 lua_assert(base <= L->top && L->top < L->stack + L->stacksize);
H A Dlstate.h163 int stacksize; member in struct:lua_State
H A Dlstate.c137 L1->stacksize = BASIC_STACK_SIZE;
141 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
158 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */
208 L->stacksize = 0;
H A Dllimits.h299 #define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
H A Dlgc.c503 StkId lim = th->stack + th->stacksize; /* real end of stack */
512 return sizeof(lua_State) + sizeof(TValue) * th->stacksize +
H A Dldo.c163 int lim = L->stacksize;
165 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK);
166 luaM_reallocvector(L, L->stack, L->stacksize, newsize, TValue);
169 L->stacksize = newsize;
176 int size = L->stacksize;
210 goodsize >= L->stacksize) /* would grow instead of shrink? */
/barrelfish-2018-10-04/lib/bomp/include/
H A Dbomp_backend.h27 void *arg, size_t stacksize);
/barrelfish-2018-10-04/lib/bomp/backends/
H A Dbomp_shared.c261 int bomp_run_main(main_func_t mainfunc, void *mainarg, size_t stacksize) argument
267 struct thread *mt = thread_create_varstack(mainfunc, mainarg, stacksize);
H A Dlinux.c91 void *arg, size_t stacksize)
90 backend_thread_create_varstack(bomp_thread_func_t start_func, void *arg, size_t stacksize) argument
/barrelfish-2018-10-04/lib/barrelfish/
H A Dthreads.c350 * \param stacksize Size of stack, in bytes
355 size_t stacksize)
358 assert((stacksize % sizeof(uintptr_t)) == 0);
359 void *stack = malloc(stacksize);
418 newthread->stack_top = (char *)stack + stacksize;
440 * \param stacksize Size of stack, in bytes
445 size_t stacksize)
447 struct thread *newthread = thread_create_unrunnable(start_func, arg, stacksize);
354 thread_create_unrunnable(thread_func_t start_func, void *arg, size_t stacksize) argument
444 thread_create_varstack(thread_func_t start_func, void *arg, size_t stacksize) argument
H A Ddomain.c151 uint64_t stacksize, genvaddr_t req)
158 if(stacksize > 0) {
159 newthread = thread_create_varstack(start_func, arg, stacksize);
947 void *arg, size_t stacksize,
952 if (stacksize == 0) {
955 th = thread_create_varstack(start_func, arg, stacksize);
983 stacksize,
149 create_thread_request(struct interdisp_binding *b, genvaddr_t funcaddr, genvaddr_t argaddr, uint64_t stacksize, genvaddr_t req) argument
945 domain_thread_create_on_varstack(coreid_t core_id, thread_func_t start_func, void *arg, size_t stacksize, struct thread **newthread) argument
/barrelfish-2018-10-04/lib/barrelfish/include/
H A Dthreads_priv.h119 size_t stacksize);
/barrelfish-2018-10-04/include/
H A Domp.h104 int bomp_run_main(main_func_t mainfunc, void *mainarg, size_t stacksize);
184 int bomp_run_main(main_func_t mainfunc, void *mainarg, size_t stacksize);
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dsys.h329 * @param stacksize stack size in bytes for the new thread (may be ignored by ports)
331 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio);
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dsys.h142 void *arg, int stacksize, int prio);
/barrelfish-2018-10-04/include/barrelfish/
H A Dthreads.h37 size_t stacksize);
H A Ddomain.h97 void *arg, size_t stacksize,

Completed in 152 milliseconds