Skip to content

Commit

Permalink
Merge pull request #6978 from OpenNuvoton/nuvoton_m23_tz_module
Browse files Browse the repository at this point in the history
Support default tz_module in event loop thread for M23/M33
  • Loading branch information
Cruz Monrreal committed Jun 11, 2018
2 parents 8c6a664 + 665dc99 commit 3206b81
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Expand Up @@ -514,7 +514,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));
Expand All @@ -531,6 +535,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");
}
Expand Down
Expand Up @@ -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];
Expand All @@ -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

Expand Down

0 comments on commit 3206b81

Please sign in to comment.