summaryrefslogtreecommitdiffstats
path: root/include/linux/wait.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/wait.h')
-rw-r--r--include/linux/wait.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h
new file mode 100644
index 0000000000..e2df8878ed
--- /dev/null
+++ b/include/linux/wait.h
@@ -0,0 +1,11 @@
+#ifndef _LINUX_WAIT_H
+#define _LINUX_WAIT_H
+/*
+ * Linux wait queue related types and methods
+ */
+
+typedef int wait_queue_head_t;
+
+#define init_waitqueue_head(...) do { } while (0)
+
+#endif /* _LINUX_WAIT_H */