Mutex for thread synchronization. More...
#include <stddef.h>
#include <stdint.h>
#include "irq.h"
#include "kernel_defines.h"
#include "list.h"
#include "thread.h"
Go to the source code of this file.
Data Structures | |
struct | mutex_t |
Mutex structure. More... | |
Macros | |
#define | MUTEX_INIT { { NULL } } |
Static initializer for mutex_t. More... | |
#define | MUTEX_INIT_LOCKED { { MUTEX_LOCKED } } |
Static initializer for mutex_t with a locked mutex. | |
Functions | |
static void | mutex_init (mutex_t *mutex) |
Initializes a mutex object. More... | |
static int | mutex_trylock (mutex_t *mutex) |
Tries to get a mutex, non-blocking. More... | |
void | mutex_lock (mutex_t *mutex) |
Locks a mutex, blocking. More... | |
void | mutex_unlock (mutex_t *mutex) |
Unlocks the mutex. More... | |
void | mutex_unlock_and_sleep (mutex_t *mutex) |
Unlocks the mutex and sends the current thread to sleep. More... | |