summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/linux/eventpoll.h
blob: 19990ac2a864e1596ec76b2d9778cc98e2a93504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _LINUX_EVENTPOLL_H
#define _LINUX_EVENTPOLL_H

#include <sys/ioctl.h>
#include <sys/poll.h>
#include <sys/shm.h>

#define POLLFD_X_PAGE	(PAGE_SIZE / sizeof(struct pollfd))
#define EP_FDS_PAGES(n)	(((n) + POLLFD_X_PAGE - 1) / POLLFD_X_PAGE)
#define EP_MAP_SIZE(n)	(EP_FDS_PAGES(n) * PAGE_SIZE * 2)

struct evpoll {
  int ep_timeout;
  unsigned long ep_resoff;
};

#endif