mirror of https://github.com/ARMmbed/mbed-os.git
parent
71555a984d
commit
c23709c60a
|
@ -120,7 +120,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
|
||||||
public:
|
public:
|
||||||
/** Create and Initialize a ConditionVariable object
|
/** Create and Initialize a ConditionVariable object
|
||||||
*
|
*
|
||||||
* @note This function may be called from ISR context.
|
* @note You may call this function from ISR context.
|
||||||
*/
|
*/
|
||||||
ConditionVariable(Mutex &mutex);
|
ConditionVariable(Mutex &mutex);
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ public:
|
||||||
* mutex.unlock();
|
* mutex.unlock();
|
||||||
* @endcode
|
* @endcode
|
||||||
*
|
*
|
||||||
* @note This function cannot be called from ISR context.
|
* @note You cannot call this function from ISR context.
|
||||||
*/
|
*/
|
||||||
void wait();
|
void wait();
|
||||||
|
|
||||||
|
@ -182,7 +182,7 @@ public:
|
||||||
* mutex.unlock();
|
* mutex.unlock();
|
||||||
* @endcode
|
* @endcode
|
||||||
*
|
*
|
||||||
* @note This function cannot be called from ISR context.
|
* @note You cannot call this function from ISR context.
|
||||||
*/
|
*/
|
||||||
bool wait_for(uint32_t millisec);
|
bool wait_for(uint32_t millisec);
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ public:
|
||||||
|
|
||||||
/** ConditionVariable destructor
|
/** ConditionVariable destructor
|
||||||
*
|
*
|
||||||
* @note This function may be called from ISR context.
|
* @note You may call this function from ISR context.
|
||||||
*/
|
*/
|
||||||
~ConditionVariable();
|
~ConditionVariable();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue