Skip to content

Commit

Permalink
Merge pull request #20836 from benpicco/sys/gcoap-thread_name
Browse files Browse the repository at this point in the history
gcoap: the name of the gcoap thread should be gcoap
  • Loading branch information
benpicco authored Aug 27, 2024
2 parents 1626919 + f95dc97 commit 022630c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/net/application_layer/gcoap/gcoap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 022630c

Please sign in to comment.