1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/event/thread: add STACKSTEST flag

This commit is contained in:
Francisco Molina 2021-09-24 16:20:35 +02:00
parent 719a18ca8b
commit ae5e10bc26

View File

@ -57,8 +57,8 @@ void event_thread_init_multi(event_queue_t *queues, size_t queues_numof,
void *tagged_ptr = ptrtag(queues, queues_numof - 1);
thread_create(stack, stack_size, priority, 0, _handler_thread, tagged_ptr,
"event");
thread_create(stack, stack_size, priority, THREAD_CREATE_STACKTEST,
_handler_thread, tagged_ptr, "event");
}
#ifndef EVENT_THREAD_STACKSIZE_DEFAULT