Skip to content

Commit

Permalink
Merge pull request #18605 from blueted2/master
Browse files Browse the repository at this point in the history
core/mutex: fix typo in docs
  • Loading branch information
kaspar030 authored Sep 16, 2022
2 parents 8d824bc + 4d4c595 commit d47b685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/include/mutex.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
* blocking.
* 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
* be setting the `thread_t::rq_entry.next` of the running thread to `NULL`.
* by setting the `thread_t::rq_entry.next` of the running thread to `NULL`.
* The running thread blocks as described below.
* 3. Otherwise, the current thread is inserted into the list of waiting
* threads sorted by thread priority. The running thread blocks as described
Expand Down

0 comments on commit d47b685

Please sign in to comment.