1/* Public domain. */
2
3#ifndef IOPAUSE_H
4#define IOPAUSE_H
5
6/* sysdep: -poll */
7
8typedef struct {
9  int fd;
10  short events;
11  short revents;
12} iopause_fd;
13
14#define IOPAUSE_READ 1
15#define IOPAUSE_WRITE 4
16
17#include "taia.h"
18
19extern void iopause(iopause_fd *,unsigned int,struct taia *,struct taia *);
20
21#endif
22