Skip to content

Commit

Permalink
pico/mutex.h: Fix typo in comment (raspberrypi#1637)
Browse files Browse the repository at this point in the history
  • Loading branch information
neuschaefer authored Feb 15, 2024
1 parent c9cce7a commit 0c65e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/pico_sync/include/pico/mutex.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0c65e1d

Please sign in to comment.