aboutsummaryrefslogtreecommitdiff
path: root/iopause.h1
diff options
context:
space:
mode:
Diffstat (limited to 'iopause.h1')
-rw-r--r--iopause.h119
1 files changed, 19 insertions, 0 deletions
diff --git a/iopause.h1 b/iopause.h1
new file mode 100644
index 0000000..dae0a33
--- /dev/null
+++ b/iopause.h1
@@ -0,0 +1,19 @@
+#ifndef IOPAUSE_H
+#define IOPAUSE_H
+
+/* sysdep: -poll */
+
+typedef struct {
+ int fd;
+ short events;
+ short revents;
+} iopause_fd;
+
+#define IOPAUSE_READ 1
+#define IOPAUSE_WRITE 4
+
+#include "taia.h"
+
+extern void iopause(iopause_fd *,unsigned int,struct taia *,struct taia *);
+
+#endif