diff options
author | Richard Braun <rbraun@sceen.net> | 2017-08-27 16:45:37 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-08-27 16:45:37 +0200 |
commit | 791a6563cd955f59e04084f1fc20aadbbc6ae25f (patch) | |
tree | 914569337e26f75f5294007507f44ab65b807864 /kern/condition_types.h | |
parent | d3d0b5245942055aa7478d2adb20f1359ef772f7 (diff) |
kern/condition: implement timed waits
Diffstat (limited to 'kern/condition_types.h')
-rw-r--r-- | kern/condition_types.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kern/condition_types.h b/kern/condition_types.h index 13a29205..abd42f21 100644 --- a/kern/condition_types.h +++ b/kern/condition_types.h @@ -22,8 +22,7 @@ #define _KERN_CONDITION_TYPES_H struct condition { - unsigned short nr_sleeping_waiters; - unsigned short nr_pending_waiters; + unsigned int _unused; }; #endif /* _KERN_CONDITION_TYPES_H */ |