Skip to content

core/msg: re-enable IRQs before printing for highlevel_stdio #27220

core/msg: re-enable IRQs before printing for highlevel_stdio

core/msg: re-enable IRQs before printing for highlevel_stdio #27220

Triggered via pull request November 26, 2024 21:05
Status Success
Total duration 2m 49s
Artifacts

static-test.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 warning
static-tests: core/msg.c#L524
Uncrustify proposes the following patch: --- a/core/msg.c +++ b/core/msg.c @@ -518,7 +518,7 @@ void msg_queue_print(void) int first_msg = cib_peek(msg_queue); static msg_t msg_array[MSG_QUEUE_PRINT_MAX]; - memcpy(msg_array, thread->msg_array, sizeof(msg_t)*max); + memcpy(msg_array, thread->msg_array, sizeof(msg_t) * max); irq_restore(state); printf("Message queue of thread %" PRIkernel_pid "\n", thread->pid);