We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739a429 commit 2963308Copy full SHA for 2963308
rtos/Semaphore.h
@@ -58,7 +58,10 @@ class Semaphore : private mbed::NonCopyable<Semaphore> {
58
int32_t wait(uint32_t millisec=osWaitForever);
59
60
/** Release a Semaphore resource that was obtain with Semaphore::wait.
61
- @return status code that indicates the execution status of the function.
+ @return status code that indicates the execution status of the function:
62
+ @a osOK the token has been correctly released.
63
+ @a osErrorResource the maximum token count has been reached.
64
+ @a osErrorParameter internal error.
65
*/
66
osStatus release(void);
67
0 commit comments