Skip to content
Snippets Groups Projects
Commit 69fb02c3 authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

core: uncrustify thread_flags.h

parent 6e6716a1
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@
#include "sched.h" /* for thread_t typedef */
#ifdef __cplusplus
extern "C" {
extern "C" {
#endif
/**
......@@ -96,13 +96,13 @@
* ...
* }
*/
#define THREAD_FLAG_MSG_WAITING (0x1<<15)
#define THREAD_FLAG_MSG_WAITING (1u << 15)
/**
* @brief Set by @ref xtimer_set_timeout_flag() when the timer expires
*
* @see xtimer_set_timeout_flag
*/
#define THREAD_FLAG_TIMEOUT (0x1<<14)
#define THREAD_FLAG_TIMEOUT (1u << 14)
/** @} */
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment