aboutsummaryrefslogtreecommitdiff
path: root/core/arch/arm/include/kernel/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/arch/arm/include/kernel/mutex.h')
-rw-r--r--core/arch/arm/include/kernel/mutex.h31
1 files changed, 29 insertions, 2 deletions
diff --git a/core/arch/arm/include/kernel/mutex.h b/core/arch/arm/include/kernel/mutex.h
index f1ca2a6c..e4c470b0 100644
--- a/core/arch/arm/include/kernel/mutex.h
+++ b/core/arch/arm/include/kernel/mutex.h
@@ -5,22 +5,37 @@
#ifndef KERNEL_MUTEX_H
#define KERNEL_MUTEX_H
-#include <types_ext.h>
-#include <sys/queue.h>
+#include <kernel/refcount.h>
#include <kernel/wait_queue.h>
+#include <sys/queue.h>
+#include <types_ext.h>
struct mutex {
unsigned spin_lock; /* used when operating on this struct */
struct wait_queue wq;
short state; /* -1: write, 0: unlocked, > 0: readers */
};
+
#define MUTEX_INITIALIZER { .wq = WAIT_QUEUE_INITIALIZER }
+struct recursive_mutex {
+ struct mutex m; /* used when lock_depth goes 0 -> 1 or 1 -> 0 */
+ short int owner;
+ struct refcount lock_depth;
+};
+
+#define RECURSIVE_MUTEX_INITIALIZER { .m = MUTEX_INITIALIZER, \
+ .owner = THREAD_ID_INVALID }
+
TAILQ_HEAD(mutex_head, mutex);
void mutex_init(struct mutex *m);
void mutex_destroy(struct mutex *m);
+void mutex_init_recursive(struct recursive_mutex *m);
+void mutex_destroy_recursive(struct recursive_mutex *m);
+unsigned int mutex_get_recursive_lock_depth(struct recursive_mutex *m);
+
#ifdef CFG_MUTEX_DEBUG
void mutex_unlock_debug(struct mutex *m, const char *fname, int lineno);
#define mutex_unlock(m) mutex_unlock_debug((m), __FILE__, __LINE__)
@@ -40,6 +55,15 @@ void mutex_read_lock_debug(struct mutex *m, const char *fname, int lineno);
bool mutex_read_trylock_debug(struct mutex *m, const char *fname, int lineno);
#define mutex_read_trylock(m) mutex_read_trylock_debug((m), __FILE__, __LINE__)
+void mutex_unlock_recursive_debug(struct recursive_mutex *m, const char *fname,
+ int lineno);
+#define mutex_unlock_recursive(m) mutex_unlock_recursive_debug((m), __FILE__, \
+ __LINE__)
+
+void mutex_lock_recursive_debug(struct recursive_mutex *m, const char *fname,
+ int lineno);
+#define mutex_lock_recursive(m) mutex_lock_recursive_debug((m), __FILE__, \
+ __LINE__)
#else
void mutex_unlock(struct mutex *m);
void mutex_lock(struct mutex *m);
@@ -47,6 +71,9 @@ bool mutex_trylock(struct mutex *m);
void mutex_read_unlock(struct mutex *m);
void mutex_read_lock(struct mutex *m);
bool mutex_read_trylock(struct mutex *m);
+
+void mutex_unlock_recursive(struct recursive_mutex *m);
+void mutex_lock_recursive(struct recursive_mutex *m);
#endif
struct condvar {