From 563ec40ca81867c0d1cea1ae0f2381bfe832af24 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Wed, 13 Aug 2003 10:49:24 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'V9_2_0_29mdk'. --- mdk-stage1/dietlibc/include/sys/poll.h | 47 ---------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 mdk-stage1/dietlibc/include/sys/poll.h (limited to 'mdk-stage1/dietlibc/include/sys/poll.h') diff --git a/mdk-stage1/dietlibc/include/sys/poll.h b/mdk-stage1/dietlibc/include/sys/poll.h deleted file mode 100644 index fe36df79d..000000000 --- a/mdk-stage1/dietlibc/include/sys/poll.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef _SYS_POLL_H -#define _SYS_POLL_H - -#include - -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 */ -- cgit v1.2.1