File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
120
120
public:
121
121
/* * Create and Initialize a ConditionVariable object
122
122
*
123
- * @note You may call this function from ISR context.
123
+ * @note You cannot call this function from ISR context.
124
124
*/
125
125
ConditionVariable (Mutex &mutex);
126
126
@@ -190,21 +190,21 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
190
190
*
191
191
* @note - The thread calling this function must be the owner of the ConditionVariable's mutex
192
192
*
193
- * @note This function may be called from ISR context.
193
+ * @note You cannot call this function from ISR context.
194
194
*/
195
195
void notify_one ();
196
196
197
197
/* * Notify all waiters on this condition variable that a condition changed.
198
198
*
199
199
* @note - The thread calling this function must be the owner of the ConditionVariable's mutex
200
200
*
201
- * @note This function may be called from ISR context.
201
+ * @note You cannot call this function from ISR context.
202
202
*/
203
203
void notify_all ();
204
204
205
205
/* * ConditionVariable destructor
206
206
*
207
- * @note You may call this function from ISR context.
207
+ * @note You cannot call this function from ISR context.
208
208
*/
209
209
~ConditionVariable ();
210
210
You can’t perform that action at this time.
0 commit comments