diff options
Diffstat (limited to 'include/linux/hfs_sysdep.h')
-rw-r--r-- | include/linux/hfs_sysdep.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/hfs_sysdep.h b/include/linux/hfs_sysdep.h index 93de05aad..22e2ac66b 100644 --- a/include/linux/hfs_sysdep.h +++ b/include/linux/hfs_sysdep.h @@ -78,6 +78,10 @@ extern inline hfs_u32 hfs_time(void) { */ typedef struct wait_queue *hfs_wait_queue; +extern inline void hfs_init_waitqueue(hfs_wait_queue *queue) { + init_waitqueue(queue); +} + extern inline void hfs_sleep_on(hfs_wait_queue *queue) { sleep_on(queue); } |