1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

Merge pull request #20836 from benpicco/sys/gcoap-thread_name

gcoap: the name of the gcoap thread should be gcoap
This commit is contained in:
benpicco 2024-08-27 08:56:50 +00:00 committed by GitHub
commit 022630c043
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1600,7 +1600,7 @@ kernel_pid_t gcoap_init(void)
return -EEXIST;
}
_pid = thread_create(_msg_stack, sizeof(_msg_stack), THREAD_PRIORITY_MAIN - 1,
0, _event_loop, NULL, "coap");
0, _event_loop, NULL, "gcoap");
mutex_init(&_coap_state.lock);
/* Blank lists so we know if an entry is available. */