mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #15699 from aabadie/pr/core/mutex_doc_typo
core/mutex: fix typo in documentation
This commit is contained in:
commit
453d0478dc
@ -59,7 +59,7 @@
|
|||||||
* 1. If the mutex was unlocked (value of `NULL`), its value is changed to
|
* 1. If the mutex was unlocked (value of `NULL`), its value is changed to
|
||||||
* `MUTEX_LOCKED` and the call to `mutex_lock()` returns right away without
|
* `MUTEX_LOCKED` and the call to `mutex_lock()` returns right away without
|
||||||
* blocking.
|
* blocking.
|
||||||
* 2. If the mutex as a vale of `MUTEX_LOCKED`, it will be changed to point to
|
* 2. If the mutex has a value of `MUTEX_LOCKED`, it will be changed to point to
|
||||||
* the `thread_t` of the running thread. The single item list is terminated
|
* the `thread_t` of the running thread. The single item list is terminated
|
||||||
* be setting the `thread_t::rq_entry.next` of the running thread to `NULL`.
|
* be setting the `thread_t::rq_entry.next` of the running thread to `NULL`.
|
||||||
* The running thread blocks as described below.
|
* The running thread blocks as described below.
|
||||||
|
Loading…
Reference in New Issue
Block a user