1/* Public domain. */
2
3#ifndef IOPAUSE_H
4#define IOPAUSE_H
5
6/* sysdep: +poll */
7#define IOPAUSE_POLL
8
9#include <sys/types.h>
10#include <poll.h>
11
12typedef struct pollfd iopause_fd;
13#define IOPAUSE_READ POLLIN
14#define IOPAUSE_WRITE POLLOUT
15
16#include "taia.h"
17
18extern void iopause(iopause_fd *,unsigned int,struct taia *,struct taia *);
19
20#endif
21