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