diff options
author | Richard Braun <rbraun@sceen.net> | 2017-02-06 22:16:17 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-02-06 22:16:17 +0100 |
commit | 09558df791f53dbd1da39216839ae5219b7ef1b0 (patch) | |
tree | 74b540beb0a0f993792cea4a4ed89a9466d7431d /kern/condition.h | |
parent | 9dfcd785f0180e75c5f33a5a3b67f39e48bf2070 (diff) |
kern/condition: add missing condition-variable public declaration
Diffstat (limited to 'kern/condition.h')
-rw-r--r-- | kern/condition.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kern/condition.h b/kern/condition.h index a61c2a9d..55d37bf2 100644 --- a/kern/condition.h +++ b/kern/condition.h @@ -27,6 +27,11 @@ #include <kern/list.h> #include <kern/spinlock.h> +/* + * Condition variable. + */ +struct condition; + static inline void condition_init(struct condition *condition) { |