Skip to content

Doxygen comment fix for Thread class #5098

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

Merged
merged 1 commit into from
Oct 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rtos/Thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ class Thread : private mbed::NonCopyable<Thread> {

/** Set the specified Thread Flags for the thread.
@param signals specifies the signal flags of the thread that should be set.
@return previous signal flags of the specified thread or osFlagsError in case of incorrect parameters.
@return signal flags after setting or osFlagsError in case of incorrect parameters.
*/
int32_t signal_set(int32_t signals);

Expand Down Expand Up @@ -305,7 +305,7 @@ class Thread : private mbed::NonCopyable<Thread> {

/** Clears the specified Thread Flags of the currently running thread.
@param signals specifies the signal flags of the thread that should be cleared.
@return resultant signal flags of the specified thread or osFlagsError in case of incorrect parameters.
@return signal flags before clearing or osFlagsError in case of incorrect parameters.
*/
static int32_t signal_clr(int32_t signals);

Expand Down