ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev_poll.c
(Generate patch)

Comparing libev/ev_poll.c (file contents):
Revision 1.13 by root, Mon Nov 12 05:40:55 2007 UTC vs.
Revision 1.16 by root, Fri Nov 23 05:13:49 2007 UTC

51 idx = pollidxs [fd]; 51 idx = pollidxs [fd];
52 52
53 if (idx < 0) /* need to allocate a new pollfd */ 53 if (idx < 0) /* need to allocate a new pollfd */
54 { 54 {
55 pollidxs [fd] = idx = pollcnt++; 55 pollidxs [fd] = idx = pollcnt++;
56 array_needsize (struct pollfd, polls, pollmax, pollcnt, (void)); 56 array_needsize (struct pollfd, polls, pollmax, pollcnt, EMPTY2);
57 polls [idx].fd = fd; 57 polls [idx].fd = fd;
58 } 58 }
59 59
60 assert (polls [idx].fd == fd); 60 assert (polls [idx].fd == fd);
61 61
106} 106}
107 107
108static int 108static int
109poll_init (EV_P_ int flags) 109poll_init (EV_P_ int flags)
110{ 110{
111 method_fudge = 1e-3; /* needed to compensate for select returning early, very conservative */ 111 backend_fudge = 1e-3; /* needed to compensate for select returning early, very conservative */
112 method_modify = poll_modify; 112 backend_modify = poll_modify;
113 method_poll = poll_poll; 113 backend_poll = poll_poll;
114 114
115 pollidxs = 0; pollidxmax = 0; 115 pollidxs = 0; pollidxmax = 0;
116 polls = 0; pollmax = 0; pollcnt = 0; 116 polls = 0; pollmax = 0; pollcnt = 0;
117 117
118 return EVMETHOD_POLL; 118 return EVBACKEND_POLL;
119} 119}
120 120
121static void 121static void
122poll_destroy (EV_P) 122poll_destroy (EV_P)
123{ 123{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines