summaryrefslogtreecommitdiff
path: root/iopause.h2
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@debian.org>2018-11-29 05:18:28 +0000
committerDmitry Bogatov <KAction@debian.org>2018-11-29 05:18:28 +0000
commitb19ff825af9758fa905bf0ba29bbff66fa66cd50 (patch)
tree4a6fc0b53bb646a038a422b7ef90d65968fde149 /iopause.h2
parent35c0ccd3b0eedd2d14e26a109f5812a5c30c38aa (diff)
Import Upstream version 0.88
Diffstat (limited to 'iopause.h2')
-rw-r--r--iopause.h218
1 files changed, 18 insertions, 0 deletions
diff --git a/iopause.h2 b/iopause.h2
new file mode 100644
index 0000000..2cf5cf8
--- /dev/null
+++ b/iopause.h2
@@ -0,0 +1,18 @@
+#ifndef IOPAUSE_H
+#define IOPAUSE_H
+
+/* sysdep: +poll */
+#define IOPAUSE_POLL
+
+#include <sys/types.h>
+#include <poll.h>
+
+typedef struct pollfd iopause_fd;
+#define IOPAUSE_READ POLLIN
+#define IOPAUSE_WRITE POLLOUT
+
+#include "taia.h"
+
+extern void iopause(iopause_fd *,unsigned int,struct taia *,struct taia *);
+
+#endif