Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/pthread/
Dpthread.c273 stack_size = attr->stacksize;
773 attr->stacksize = CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;
784 attr->stacksize = CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;
791 int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize)
794 *stacksize = attr->stacksize;
800 int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
802 if (attr && !(stacksize < PTHREAD_STACK_MIN)) {
803 attr->stacksize = stacksize;
1061 attr->stacksize = POSIX_THREAD_STACK_SIZE; in pthread_attr_init()
1244 attr->stacksize = stackSize; in pthread_attr_setstacksize()
[all …]
/device/soc/hisilicon/hi3861v100/hi3861_adapter/kal/posix/src/
Dpthread_attr.c50 attr->stacksize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE; in pthread_attr_init()
217 attr->stacksize = stackSize; in pthread_attr_setstacksize()
229 *stackSize = attr->stacksize; in pthread_attr_getstacksize()
Dpthread.c149 taskInitParam.uwStackSize = attr->stacksize; in pthread_create()
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/hw/include/bits/
Dpthread_types.h45 size_t stacksize; member
/device/soc/beken/bk7235/liteos_m/third_party_adapter/lwip_intf_v2_1/lwip-2.1.2/port/
Dsys_arch.c393 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread , void *arg, int stacksize, int… in sys_thread_new() argument
398 result = rtos_create_thread(&CreatedTask, prio, name, thread, stacksize * sizeof(uint32_t), arg); in sys_thread_new()
/device/soc/esp/esp32/components/esp_lwip/port/
Dsys_arch.c402 sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio) in sys_thread_new() argument
409 ret = xTaskCreatePinnedToCore(thread, name, stacksize, arg, prio, &rtos_task, in sys_thread_new()
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/interconnection_server/
Dhisignalling.c601 int err = 0, stacksize = HISIGNALLING_TASK_STACK_SIZE; in HisignallingMsgTask() local
605 err = pthread_attr_setstacksize(&hisignallingAttr, stacksize); in HisignallingMsgTask()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
Dsys.h381 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int …
/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/include/rtos/liteos/liteos_m/kal/cmsis/
Dcmsis_os.h207 uint32_t stacksize; ///< stack size requirements in bytes; 0 is default stack size member