release
[hcoop/zz_old/debian/djbdns.git] / iopause.h1
1 #ifndef IOPAUSE_H
2 #define IOPAUSE_H
3
4 /* sysdep: -poll */
5
6 typedef 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
17 extern void iopause(iopause_fd *,unsigned int,struct taia *,struct taia *);
18
19 #endif