-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core/thread_flags: Remove unused THREAD_FLAG_MUTEX_UNLOCKED #7717
core/thread_flags: Remove unused THREAD_FLAG_MUTEX_UNLOCKED #7717
Conversation
core/include/thread_flags.h
Outdated
#define THREAD_FLAG_MUTEX_UNLOCKED (0x1<<14) | ||
#define THREAD_FLAG_TIMEOUT (0x1<<13) | ||
/** | ||
* @brief Thread flag which is set by xtimer_set_timeout_flag when the timer expires |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(minor, feel free to change)
The other flag has "Set when ..." as brief. IMO "Set by @ref xtimer_set_timeout_flag() when the timer expires" would fit better here, for more consistent look in the generated doxygen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK. feel free to squash in the doxygen comment.
and improve docs for THREAD_FLAG_TIMEOUT
8c63837
to
317b013
Compare
amended Doxygen change |
Murdock is happy -> go |
and improve docs for THREAD_FLAG_TIMEOUT
Fixes #7543