File:  [DVB] / dietlibc / include / poll.h
Revision 1.4: download - view: text, annotated - select for diffs
Wed Feb 20 00:47:08 2008 UTC (16 years, 3 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
declare nfds_t

#ifndef _POLL_H
#define _POLL_H

#include <sys/cdefs.h>

__BEGIN_DECLS

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;
};

typedef unsigned int nfds_t;

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

#ifdef _GNU_SOURCE
#include <signal.h>
int ppoll(struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, const sigset_t *sigmask) __THROW;
#endif

__END_DECLS

#endif	/* _POLL_H */

LinuxTV legacy CVS <linuxtv.org/cvs>