Home
last modified time | relevance | path

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

/AliOS-Things-master/components/posix/src/
A Dpthread_attr.c19 attr->stacksize = PTHREAD_DEFAULT_STACK_SIZE; in pthread_attr_init()
111 int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize) in pthread_attr_setstacksize() argument
113 if ((attr == NULL) || (stacksize <= 0)) { in pthread_attr_setstacksize()
117 attr->stacksize = stacksize; in pthread_attr_setstacksize()
122 int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize) in pthread_attr_getstacksize() argument
124 if ((attr == NULL) || (stacksize == NULL)) { in pthread_attr_getstacksize()
128 *stacksize = attr->stacksize; in pthread_attr_getstacksize()
157 if ((attr == NULL) || (stackaddr == NULL) || (stacksize <= 0)) { in pthread_attr_setstack()
162 attr->stacksize = stacksize; in pthread_attr_setstack()
169 if ((attr == NULL) || (stackaddr == NULL) || (stacksize == NULL)) { in pthread_attr_getstack()
[all …]
A Dpthread.c183 ptcb, NULL, ptcb->attr.stacksize, kpriority, 0); in pthread_create()
/AliOS-Things-master/components/SDL2/include/
A DSDL_thread.h123 const char *name, const size_t stacksize, void *data,
135 … SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL(fn, n… argument
138 #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, … argument
169 SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const char *name, const size_t stacksize, void…
177 #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL… argument
180 …ne SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, name… argument
221 SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const char *name, const size_t stacksize, void…
/AliOS-Things-master/components/SDL2/src/thread/
A DSDL_thread.c305 const char *name, const size_t stacksize, void *data, in SDL_CreateThreadWithStackSize() argument
311 const char *name, const size_t stacksize, void *data) in SDL_CreateThreadWithStackSize()
338 thread->stacksize = stacksize; in SDL_CreateThreadWithStackSize()
371 size_t stacksize = 0; in SDL_CreateThread() local
379 stacksize = (size_t) hintval; in SDL_CreateThread()
385 return SDL_CreateThreadWithStackSize(fn, name, stacksize, data, pfnBeginThread, pfnEndThread); in SDL_CreateThread()
388 stacksize = 8192 * 6; in SDL_CreateThread()
390 return SDL_CreateThreadWithStackSize(fn, name, stacksize, data); in SDL_CreateThread()
396 const size_t stacksize, void *data) { in SDL_CreateThreadInternal() argument
398 return SDL_CreateThreadWithStackSize(fn, name, stacksize, data, NULL, NULL); in SDL_CreateThreadInternal()
[all …]
A DSDL_systhread.h66 const size_t stacksize, void *data);
A DSDL_thread_c.h62 size_t stacksize; /* 0 for default, >0 for user-specified stack size. */ member
/AliOS-Things-master/components/posix/include/
A Dpthread.h57 size_t stacksize; /* the size of the stack of the pthead */ member
134 int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize);
135 int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize);
138 int pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr, size_t stacksize);
139 int pthread_attr_getstack(const pthread_attr_t *attr, void **stackaddr, size_t *stacksize);
/AliOS-Things-master/components/SDL2/src/thread/psp/
A DSDL_systhread.c56 priority, thread->stacksize ? ((int) thread->stacksize) : 0x8000, in SDL_SYS_CreateThread()
/AliOS-Things-master/components/SDL2/src/thread/windows/
A DSDL_systhread.c120 const DWORD flags = thread->stacksize ? STACK_SIZE_PARAM_IS_A_RESERVATION : 0;
129 ((size_t) pfnBeginThread(NULL, (unsigned int) thread->stacksize,
134 thread->handle = CreateThread(NULL, thread->stacksize,
/AliOS-Things-master/components/SDL2/src/thread/pthread/
A DSDL_systhread.c115 if (thread->stacksize) { in SDL_SYS_CreateThread()
116 pthread_attr_setstacksize(&type, thread->stacksize); in SDL_SYS_CreateThread()
/AliOS-Things-master/components/lwip/lwip2.0.0/port/
A Dsys_arch.c584 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int … in sys_thread_new() argument
588 aos_task_new_ext(&task_handle,name,thread,arg,stacksize,prio); in sys_thread_new()
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Dsys.h369 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int …
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/
A Dsys.h369 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int …
/AliOS-Things-master/hardware/chip/haas1000/drivers/rtos/rhino/cmsis/
A Dcmsis_os.h208 …uint32_t stacksize; ///< stack size requirements in bytes; 0 is default stack size member
/AliOS-Things-master/components/SDL2/src/audio/
A DSDL_audio.c1446 const size_t stacksize = is_internal_thread ? 64 * 1024 : 0; in open_audio_device() local
1450 …L_CreateThreadInternal(iscapture ? SDL_CaptureAudio : SDL_RunAudio, threadname, stacksize, device); in open_audio_device()

Completed in 21 milliseconds