mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-02-05 18:40:21 +00:00
pico/mutex.h: Fix typo in comment (#1637)
This commit is contained in:
parent
c9cce7a312
commit
0c65e1d755
@ -20,7 +20,7 @@ extern "C" {
|
||||
*
|
||||
* Mutexes are application level locks usually used protecting data structures that might be used by
|
||||
* multiple threads of execution. Unlike critical sections, the mutex protected code is not necessarily
|
||||
* required/expected to complete quickly, as no other sytem wide locks are held on account of an acquired mutex.
|
||||
* required/expected to complete quickly, as no other system wide locks are held on account of an acquired mutex.
|
||||
*
|
||||
* When acquired, the mutex has an owner (see \ref lock_get_caller_owner_id) which with the plain SDK is just
|
||||
* the acquiring core, but in an RTOS it could be a task, or an IRQ handler context.
|
||||
|
Loading…
x
Reference in New Issue
Block a user