@@ -106,7 +106,7 @@ void recursive_mutex_enter_blocking(recursive_mutex_t *mtx);
106
106
*
107
107
* If the mutex wasn't owned, this will claim the mutex for the caller and return true.
108
108
* Otherwise (if the mutex was already owned) this will return false and the
109
- * caller will * NOT* own the mutex.
109
+ * caller will NOT own the mutex.
110
110
*
111
111
* \param mtx Pointer to mutex structure
112
112
* \param owner_out If mutex was already owned, and this pointer is non-zero, it will be filled in with the owner id of the current owner of the mutex
@@ -119,7 +119,7 @@ bool mutex_try_enter(mutex_t *mtx, uint32_t *owner_out);
119
119
*
120
120
* If the mutex wasn't owned or was owned by the caller, this will claim the mutex and return true.
121
121
* Otherwise (if the mutex was already owned by another owner) this will return false and the
122
- * caller will * NOT* own the mutex.
122
+ * caller will NOT own the mutex.
123
123
*
124
124
* \param mtx Pointer to recursive mutex structure
125
125
* \param owner_out If mutex was already owned by another owner, and this pointer is non-zero,
@@ -133,7 +133,7 @@ bool recursive_mutex_try_enter(recursive_mutex_t *mtx, uint32_t *owner_out);
133
133
*
134
134
* Wait for up to the specific time to take ownership of the mutex. If the caller
135
135
* can be granted ownership of the mutex before the timeout expires, then true will be returned
136
- * and the caller will own the mutex, otherwise false will be returned and the caller will * NOT* own the mutex.
136
+ * and the caller will own the mutex, otherwise false will be returned and the caller will NOT own the mutex.
137
137
*
138
138
* \param mtx Pointer to mutex structure
139
139
* \param timeout_ms The timeout in milliseconds.
@@ -147,7 +147,7 @@ bool mutex_enter_timeout_ms(mutex_t *mtx, uint32_t timeout_ms);
147
147
* Wait for up to the specific time to take ownership of the recursive mutex. If the caller
148
148
* already has ownership of the mutex or can be granted ownership of the mutex before the timeout expires,
149
149
* then true will be returned and the caller will own the mutex, otherwise false will be returned and the caller
150
- * will * NOT* own the mutex.
150
+ * will NOT own the mutex.
151
151
*
152
152
* \param mtx Pointer to recursive mutex structure
153
153
* \param timeout_ms The timeout in milliseconds.
@@ -161,7 +161,7 @@ bool recursive_mutex_enter_timeout_ms(recursive_mutex_t *mtx, uint32_t timeout_m
161
161
* Wait for up to the specific time to take ownership of the mutex. If the caller
162
162
* can be granted ownership of the mutex before the timeout expires, then true will be returned
163
163
* and the caller will own the mutex, otherwise false will be returned and the caller
164
- * will * NOT* own the mutex.
164
+ * will NOT own the mutex.
165
165
*
166
166
* \param mtx Pointer to mutex structure
167
167
* \param timeout_us The timeout in microseconds.
@@ -175,7 +175,7 @@ bool mutex_enter_timeout_us(mutex_t *mtx, uint32_t timeout_us);
175
175
* Wait for up to the specific time to take ownership of the recursive mutex. If the caller
176
176
* already has ownership of the mutex or can be granted ownership of the mutex before the timeout expires,
177
177
* then true will be returned and the caller will own the mutex, otherwise false will be returned and the caller
178
- * will * NOT* own the mutex.
178
+ * will NOT own the mutex.
179
179
*
180
180
* \param mtx Pointer to mutex structure
181
181
* \param timeout_us The timeout in microseconds.
@@ -189,7 +189,7 @@ bool recursive_mutex_enter_timeout_us(recursive_mutex_t *mtx, uint32_t timeout_u
189
189
* Wait until the specific time to take ownership of the mutex. If the caller
190
190
* can be granted ownership of the mutex before the timeout expires, then true will be returned
191
191
* and the caller will own the mutex, otherwise false will be returned and the caller
192
- * will * NOT* own the mutex.
192
+ * will NOT own the mutex.
193
193
*
194
194
* \param mtx Pointer to mutex structure
195
195
* \param until The time after which to return if the caller cannot be granted ownership of the mutex
@@ -203,7 +203,7 @@ bool mutex_enter_block_until(mutex_t *mtx, absolute_time_t until);
203
203
* Wait until the specific time to take ownership of the mutex. If the caller
204
204
* already has ownership of the mutex or can be granted ownership of the mutex before the timeout expires,
205
205
* then true will be returned and the caller will own the mutex, otherwise false will be returned and the caller
206
- * will * NOT* own the mutex.
206
+ * will NOT own the mutex.
207
207
*
208
208
* \param mtx Pointer to recursive mutex structure
209
209
* \param until The time after which to return if the caller cannot be granted ownership of the mutex
0 commit comments