Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/middleware/wireless/framework_5.3.3/OSAbstraction/Interface/
Dfsl_os_abstraction.h85 …uint32_t stacksize; /*!< stack size requirements in bytes; 0 is default stack size*/ member
147 #define osThreadStackDef(name, stacksize, instances) \ argument
148 uint32_t osThreadStackArray(name)[SIZE_IN_UINT32_UNITS(stacksize)*(instances)];
/hal_nxp-latest/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction.h73 uint32_t stacksize; /*!< stack size requirements in bytes; 0 is default stack size*/ member
271 #define osThreadStackDef(name, stacksize, instances) \ argument
272 const uint32_t osThreadStackArray(name)[SIZE_IN_UINT32_UNITS(stacksize) * (instances)];
Dfsl_os_abstraction_zephyr.c339 if (thread_def->stacksize == 0) in OSA_TaskCreate()
359 … thread_def->stacksize, s_OSA_TaskCallback, (void *)thread_def->pthread, (void *)task_param, in OSA_TaskCreate()
Dfsl_os_abstraction_free_rtos.c386 … (uint32_t)((uint16_t)thread_def->stacksize / sizeof(portSTACK_TYPE)), /* task stack size */ in OSA_TaskCreate()
402 …(configSTACK_DEPTH_TYPE)((uint16_t)thread_def->stacksize / sizeof(portSTACK_TYPE)), /* task stack … in OSA_TaskCreate()
Dfsl_os_abstraction_threadx.c389 (ULONG)thread_def->stacksize, /* stack size */ in OSA_TaskCreate()