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

Merge pull request #16888 from fjmolinas/pr_event_thread_stacktest

sys/event/thread: add STACKSTEST flag
This commit is contained in:
benpicco 2021-09-25 01:23:55 +02:00 committed by GitHub
commit 01b255ee7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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