diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/util/mutex.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/util/mutex.h b/include/util/mutex.h index 8ab3235..a52e62e 100644 --- a/include/util/mutex.h +++ b/include/util/mutex.h @@ -24,7 +24,10 @@ struct MutexManager { }; void mutex_init(void); +void uart_mutexes(void); struct Mutex* create_mutex(void* addr); unsigned char delete_mutex(struct Mutex* m); +void lock_mutex(struct Mutex* m); +void unlock_mutex(struct Mutex* m); #endif |