From 651e3fceb93596c6022f6bc040fdaf10c87a3ea8 Mon Sep 17 00:00:00 2001 From: Maciej Bocianski Date: Thu, 14 Sep 2017 11:00:09 +0200 Subject: [PATCH] Doxygen comment fix for Thread class --- rtos/Thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtos/Thread.h b/rtos/Thread.h index 7aa4faa276..cf92877d7e 100644 --- a/rtos/Thread.h +++ b/rtos/Thread.h @@ -246,7 +246,7 @@ public: /** 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); @@ -305,7 +305,7 @@ public: /** 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);