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.27 by root, Wed Oct 29 06:32:48 2008 UTC vs.
Revision 1.42 by root, Mon Jun 24 21:27:57 2019 UTC

1/* 1/*
2 * libev poll fd activity backend 2 * libev poll fd activity backend
3 * 3 *
4 * Copyright (c) 2007,2008 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007,2008,2009,2010,2011,2016,2019 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without modifica- 7 * Redistribution and use in source and binary forms, with or without modifica-
8 * tion, are permitted provided that the following conditions are met: 8 * tion, are permitted provided that the following conditions are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright notice, 10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer. 11 * this list of conditions and the following disclaimer.
12 * 12 *
13 * 2. Redistributions in binary form must reproduce the above copyright 13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the 14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution. 15 * documentation and/or other materials provided with the distribution.
16 * 16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- 18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19 * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 19 * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- 20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
37 * either the BSD or the GPL. 37 * either the BSD or the GPL.
38 */ 38 */
39 39
40#include <poll.h> 40#include <poll.h>
41 41
42void inline_size 42inline_size
43pollidx_init (int *base, int count) 43void
44array_needsize_pollidx (int *base, int offset, int count)
44{ 45{
45 /* consider using memset (.., -1, ...), which is pratically guarenteed 46 /* using memset (.., -1, ...) is tempting, we we try
46 * to work on all systems implementing poll */ 47 * to be ultraportable
48 */
49 base += offset;
47 while (count--) 50 while (count--)
48 *base++ = -1; 51 *base++ = -1;
49} 52}
50 53
51static void 54static void
54 int idx; 57 int idx;
55 58
56 if (oev == nev) 59 if (oev == nev)
57 return; 60 return;
58 61
59 array_needsize (int, pollidxs, pollidxmax, fd + 1, pollidx_init); 62 array_needsize (int, pollidxs, pollidxmax, fd + 1, array_needsize_pollidx);
60 63
61 idx = pollidxs [fd]; 64 idx = pollidxs [fd];
62 65
63 if (idx < 0) /* need to allocate a new pollfd */ 66 if (idx < 0) /* need to allocate a new pollfd */
64 { 67 {
65 pollidxs [fd] = idx = pollcnt++; 68 pollidxs [fd] = idx = pollcnt++;
66 array_needsize (struct pollfd, polls, pollmax, pollcnt, EMPTY2); 69 array_needsize (struct pollfd, polls, pollmax, pollcnt, array_needsize_noinit);
67 polls [idx].fd = fd; 70 polls [idx].fd = fd;
68 } 71 }
69 72
70 assert (polls [idx].fd == fd); 73 assert (polls [idx].fd == fd);
71 74
87 90
88static void 91static void
89poll_poll (EV_P_ ev_tstamp timeout) 92poll_poll (EV_P_ ev_tstamp timeout)
90{ 93{
91 struct pollfd *p; 94 struct pollfd *p;
95 int res;
96
97 EV_RELEASE_CB;
92 int res = poll (polls, pollcnt, (int)ceil (timeout * 1000.)); 98 res = poll (polls, pollcnt, timeout * 1e3);
99 EV_ACQUIRE_CB;
93 100
94 if (expect_false (res < 0)) 101 if (expect_false (res < 0))
95 { 102 {
96 if (errno == EBADF) 103 if (errno == EBADF)
97 fd_ebadf (EV_A); 104 fd_ebadf (EV_A);
100 else if (errno != EINTR) 107 else if (errno != EINTR)
101 ev_syserr ("(libev) poll"); 108 ev_syserr ("(libev) poll");
102 } 109 }
103 else 110 else
104 for (p = polls; res; ++p) 111 for (p = polls; res; ++p)
105 if (expect_false (p->revents)) /* this expect is debatable */
106 { 112 {
107 --res; 113 assert (("libev: poll() returned illegal result, broken BSD kernel?", p < polls + pollcnt));
108 114
115 if (expect_false (p->revents)) /* this expect is debatable */
116 {
117 --res;
118
109 if (expect_false (p->revents & POLLNVAL)) 119 if (expect_false (p->revents & POLLNVAL))
110 fd_kill (EV_A_ p->fd); 120 fd_kill (EV_A_ p->fd);
111 else 121 else
112 fd_event ( 122 fd_event (
113 EV_A_ 123 EV_A_
114 p->fd, 124 p->fd,
115 (p->revents & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0) 125 (p->revents & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0)
116 | (p->revents & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0) 126 | (p->revents & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0)
117 ); 127 );
118 } 128 }
129 }
119} 130}
120 131
121int inline_size 132inline_size
133int
122poll_init (EV_P_ int flags) 134poll_init (EV_P_ int flags)
123{ 135{
124 backend_fudge = 0.; /* posix says this is zero */ 136 backend_mintime = 1e-3;
125 backend_modify = poll_modify; 137 backend_modify = poll_modify;
126 backend_poll = poll_poll; 138 backend_poll = poll_poll;
127 139
128 pollidxs = 0; pollidxmax = 0; 140 pollidxs = 0; pollidxmax = 0;
129 polls = 0; pollmax = 0; pollcnt = 0; 141 polls = 0; pollmax = 0; pollcnt = 0;
130 142
131 return EVBACKEND_POLL; 143 return EVBACKEND_POLL;
132} 144}
133 145
134void inline_size 146inline_size
147void
135poll_destroy (EV_P) 148poll_destroy (EV_P)
136{ 149{
137 ev_free (pollidxs); 150 ev_free (pollidxs);
138 ev_free (polls); 151 ev_free (polls);
139} 152}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines