Skip to content

Commit a3a73cb

Browse files
Doxygen comment fix for Thread class
1 parent 0906be6 commit a3a73cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rtos/Thread.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class Thread : private mbed::NonCopyable<Thread> {
246246

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

@@ -305,7 +305,7 @@ class Thread : private mbed::NonCopyable<Thread> {
305305

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

0 commit comments

Comments
 (0)