mirror of https://github.com/ARMmbed/mbed-os.git
Support default tz_module for event loop & lwip
parent
db73ed0751
commit
665dc99096
|
|
@ -502,7 +502,11 @@ static sys_thread_data_t thread_pool[SYS_THREAD_POOL_N];
|
|||
* Outputs:
|
||||
* sys_thread_t -- Pointer to thread handle.
|
||||
*---------------------------------------------------------------------------*/
|
||||
sys_thread_t sys_thread_new(const char *pcName,
|
||||
#ifndef MBED_TZ_DEFAULT_ACCESS
|
||||
#define MBED_TZ_DEFAULT_ACCESS 0
|
||||
#endif
|
||||
|
||||
sys_thread_t sys_thread_new(const char *pcName,
|
||||
void (*thread)(void *arg),
|
||||
void *arg, int stacksize, int priority) {
|
||||
LWIP_DEBUGF(SYS_DEBUG, ("New Thread: %s\n", pcName));
|
||||
|
|
@ -519,6 +523,7 @@ sys_thread_t sys_thread_new(const char *pcName,
|
|||
t->attr.cb_mem = &t->data;
|
||||
t->attr.stack_size = stacksize;
|
||||
t->attr.stack_mem = malloc(stacksize);
|
||||
t->attr.tz_module = MBED_TZ_DEFAULT_ACCESS;
|
||||
if (t->attr.stack_mem == NULL) {
|
||||
error("Error allocating the stack memory");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,6 +27,10 @@ static osEventFlagsId_t event_flag_id;
|
|||
|
||||
#else
|
||||
|
||||
#ifndef MBED_TZ_DEFAULT_ACCESS
|
||||
#define MBED_TZ_DEFAULT_ACCESS 0
|
||||
#endif
|
||||
|
||||
static void event_loop_thread(void *arg);
|
||||
|
||||
static uint64_t event_thread_stk[MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_THREAD_STACK_SIZE/8];
|
||||
|
|
@ -38,6 +42,7 @@ static const osThreadAttr_t event_thread_attr = {
|
|||
.stack_size = sizeof event_thread_stk,
|
||||
.cb_mem = &event_thread_tcb,
|
||||
.cb_size = sizeof event_thread_tcb,
|
||||
.tz_module = MBED_TZ_DEFAULT_ACCESS,
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue