File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ class Thread {
60
60
61
61
/* * Wait for thread to terminate
62
62
@return status code that indicates the execution status of the function.
63
+ @note not callable from interrupt
63
64
*/
64
65
osStatus join ();
65
66
@@ -134,17 +135,20 @@ class Thread {
134
135
@param signals wait until all specified signal flags set or 0 for any single signal flag.
135
136
@param millisec timeout value or 0 in case of no time-out. (default: osWaitForever).
136
137
@return event flag information or error code.
138
+ @note not callable from interrupt
137
139
*/
138
140
static osEvent signal_wait (int32_t signals, uint32_t millisec=osWaitForever);
139
141
140
142
/* * Wait for a specified time period in millisec:
141
143
@param millisec time delay value
142
144
@return status code that indicates the execution status of the function.
145
+ @note not callable from interrupt
143
146
*/
144
147
static osStatus wait (uint32_t millisec);
145
148
146
149
/* * Pass control to next thread that is in state READY.
147
150
@return status code that indicates the execution status of the function.
151
+ @note not callable from interrupt
148
152
*/
149
153
static osStatus yield ();
150
154
You can’t perform that action at this time.
0 commit comments