summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/poll.h
blob: fe36df79de2d9d1ebab1544a555cc7b2eb8fca43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef _SYS_POLL_H
#define _SYS_POLL_H

#include <sys/cdefs.h>

enum {
  POLLIN	= 0x0001,
#define POLLIN		POLLIN
  POLLPRI	= 0x0002,
#define POLLPRI		POLLPRI
  POLLOUT	= 0x0004,
#define POLLOUT		POLLOUT
  POLLERR	= 0x0008,
#define POLLERR		POLLERR
  POLLHUP	= 0x0010,
#define POLLHUP		POLLHUP
  POLLNVAL	= 0x0020,
#define POLLNVAL	POLLNVAL
  POLLRDNORM	= 0x0040,
#define POLLRDNORM	POLLRDNORM
  POLLRDBAND	= 0x0080,
#define POLLRDBAND	POLLRDBAND
  POLLWRBAND	= 0x0200,
#define POLLWRBAND	POLLWRBAND
  POLLMSG	= 0x0400,
#define POLLMSG		POLLMSG
/* POLLREMOVE is for /dev/epoll (/dev/misc/eventpoll),
 * a new event notification mechanism for 2.6 */
  POLLREMOVE	= 0x1000,
#define POLLREMOVE	POLLREMOVE
};

#if defined(__sparc__) || defined (__mips__)
#define POLLWRNORM	POLLOUT
#else
#define POLLWRNORM	0x0100
#endif

struct pollfd {
  int fd;
  short events;
  short revents;
};

extern int poll(struct pollfd *ufds, unsigned int nfds, int timeout) __THROW;

#endif	/* _SYS_POLL_H */