Skip to content
Snippets Groups Projects
Unverified Commit afb7d6e1 authored by Koen Zandberg's avatar Koen Zandberg
Browse files

cord/epsim: enable THREAD_CREATE_STACKTEST for thread

parent be1dc156
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,7 @@ static void *reg_runner(void *arg)
#ifdef MODULE_CORD_EPSIM_STANDALONE
void cord_epsim_run(void)
{
thread_create(_stack, sizeof(_stack), PRIO, 0, reg_runner, NULL, TNAME);
thread_create(_stack, sizeof(_stack), PRIO, THREAD_CREATE_STACKTEST,
reg_runner, NULL, TNAME);
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment