Contiki 3.x
|
Implementation of synchronization primitives for Cortex-M3/M4 processors.More...
Go to the source code of this file.
Functions | |
void | lock_acquire (lock_t *Lock_Variable) |
Blocking access to lock variable. | |
int | lock_try_acquire (lock_t *Lock_Variable) |
Non-blocking access to lock variable. | |
void | lock_release (lock_t *Lock_Variable) |
Release a lock after having acquired it using lock_acquire or lock_try_acquire. More... | |
Implementation of synchronization primitives for Cortex-M3/M4 processors.
Definition in file synchronization.c.
void lock_release | ( | lock_t * | Lock_Variable | ) |
Release a lock after having acquired it using lock_acquire or lock_try_acquire.
Definition at line 89 of file synchronization.c.
Referenced by _sbrk_r().