summaryrefslogtreecommitdiff
path: root/kern/rtmutex_types.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-03-04 16:21:57 +0100
committerRichard Braun <rbraun@sceen.net>2017-03-04 16:52:30 +0100
commit3fcd23576e800ebbfb1378c2e6aff2e9e1027989 (patch)
tree023c4230e8ff225e967a4213421a973fa4dea88d /kern/rtmutex_types.h
parent3ae5551b3368b16ddbc1441710e1f272b1c0ad22 (diff)
kern/rtmutex: new module
The rtmutex provides real-time mutexes, i.e. mutexes for which priority inheritance is unconditionally enabled.
Diffstat (limited to 'kern/rtmutex_types.h')
-rw-r--r--kern/rtmutex_types.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/kern/rtmutex_types.h b/kern/rtmutex_types.h
new file mode 100644
index 00000000..c03e0484
--- /dev/null
+++ b/kern/rtmutex_types.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2017 Richard Braun.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ *
+ * Isolated type definition used to avoid inclusion circular dependencies.
+ */
+
+#ifndef _KERN_RTMUTEX_TYPES_H
+#define _KERN_RTMUTEX_TYPES_H
+
+#include <stdint.h>
+
+struct rtmutex {
+ uintptr_t owner;
+};
+
+#endif /* _KERN_RTMUTEX_TYPES_H */