Merge pull request #7717 from gebart/pr/thread-flags-rm-mutex-unlock

core/thread_flags: Remove unused THREAD_FLAG_MUTEX_UNLOCKED
This commit is contained in:
Joakim Nohlgård 2017-10-13 09:14:31 +02:00 committed by GitHub
commit 1fec7e690c

View File

@ -97,9 +97,12 @@
* }
*/
#define THREAD_FLAG_MSG_WAITING (0x1<<15)
#define THREAD_FLAG_MUTEX_UNLOCKED (0x1<<14)
#define THREAD_FLAG_TIMEOUT (0x1<<13)
/**
* @brief Set by @ref xtimer_set_timeout_flag() when the timer expires
*
* @see xtimer_set_timeout_flag
*/
#define THREAD_FLAG_TIMEOUT (0x1<<14)
/** @} */
/**