Skip to content

Move event thread flag #26332

Move event thread flag

Move event thread flag #26332

Triggered via pull request September 20, 2024 01:36
Status Success
Total duration 2m 36s
Artifacts

static-test.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 warning
static-tests: core/include/thread_flags.h#L131
Uncrustify proposes the following patch: --- a/core/include/thread_flags.h +++ b/core/include/thread_flags.h @@ -121,11 +121,11 @@ extern "C" { * When using custom flags, asserting that they are not in this set can help * avoid conflict with future additions to the predefined flags. */ -#define THREAD_FLAG_PREDEFINED_MASK (\ - THREAD_FLAG_EVENT |\ - THREAD_FLAG_MSG_WAITING |\ - THREAD_FLAG_TIMEOUT\ - ) +#define THREAD_FLAG_PREDEFINED_MASK ( \ + THREAD_FLAG_EVENT | \ + THREAD_FLAG_MSG_WAITING | \ + THREAD_FLAG_TIMEOUT \ + ) /** @} */