diff --git a/core/include/thread_flags.h b/core/include/thread_flags.h
index cfe0ce3d044c490916ba0fb524f5c7b5f5d22592..88fd508e8b8504eb2e3494a46a67d284bfefecf2 100644
--- a/core/include/thread_flags.h
+++ b/core/include/thread_flags.h
@@ -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)
 /** @} */
 
 /**