/AliOS-Things-master/components/posix/src/ |
A D | pthread_attr.c | 19 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 D | pthread.c | 183 ptcb, NULL, ptcb->attr.stacksize, kpriority, 0); in pthread_create()
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_thread.h | 123 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 D | SDL_thread.c | 305 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 D | SDL_systhread.h | 66 const size_t stacksize, void *data);
|
A D | SDL_thread_c.h | 62 size_t stacksize; /* 0 for default, >0 for user-specified stack size. */ member
|
/AliOS-Things-master/components/posix/include/ |
A D | pthread.h | 57 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 D | SDL_systhread.c | 56 priority, thread->stacksize ? ((int) thread->stacksize) : 0x8000, in SDL_SYS_CreateThread()
|
/AliOS-Things-master/components/SDL2/src/thread/windows/ |
A D | SDL_systhread.c | 120 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 D | SDL_systhread.c | 115 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 D | sys_arch.c | 584 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 D | sys.h | 369 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 D | sys.h | 369 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 D | cmsis_os.h | 208 …uint32_t stacksize; ///< stack size requirements in bytes; 0 is default stack size member
|
/AliOS-Things-master/components/SDL2/src/audio/ |
A D | SDL_audio.c | 1446 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()
|