1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

Merge pull request #9425 from gebart/pr/thread-flags-uncrustify

core: uncrustify thread_flags.h
This commit is contained in:
Kaspar Schleiser 2018-06-27 13:46:01 +02:00 committed by GitHub
commit 81219e148b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
/** @} */
/**