summaryrefslogtreecommitdiff
path: root/kern/rtmutex_i.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-08-27 17:00:40 +0200
committerRichard Braun <rbraun@sceen.net>2017-08-27 17:03:38 +0200
commite395627038e10c6e966a141743b95d7c286b25bd (patch)
tree746c543e9b04b90ead5bfa8f3d13b74c92df6ab9 /kern/rtmutex_i.h
parentb155465ec7984d8a3f8c07a5f548e457f31b6af3 (diff)
kern/rtmutex: implement timed waits
Diffstat (limited to 'kern/rtmutex_i.h')
-rw-r--r--kern/rtmutex_i.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/rtmutex_i.h b/kern/rtmutex_i.h
index 984cfd16..75ac5e4a 100644
--- a/kern/rtmutex_i.h
+++ b/kern/rtmutex_i.h
@@ -74,6 +74,8 @@ rtmutex_unlock_fast(struct rtmutex *rtmutex)
void rtmutex_lock_slow(struct rtmutex *rtmutex);
+int rtmutex_timedlock_slow(struct rtmutex *rtmutex, uint64_t ticks);
+
void rtmutex_unlock_slow(struct rtmutex *rtmutex);
#endif /* _KERN_RTMUTEX_I_H */