projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
8f970b6
)
propagate select error
author
bodea
<bodea>
Thu, 28 Jun 2007 07:22:50 +0000
(07:22 +0000)
committer
bodea
<bodea>
Thu, 28 Jun 2007 07:22:50 +0000
(07:22 +0000)
fake_epoll.h
patch
|
blob
|
history
diff --git
a/fake_epoll.h
b/fake_epoll.h
index
d89f86a
..
638757b
100644
(file)
--- a/
fake_epoll.h
+++ b/
fake_epoll.h
@@
-1,5
+1,5
@@
/* kludge up some limited epoll semantics using select for 2.4 kernels */
/* kludge up some limited epoll semantics using select for 2.4 kernels */
-/* $Id: fake_epoll.h,v 1.
1 2005/06/04 15:42:35
bodea Exp $ */
+/* $Id: fake_epoll.h,v 1.
2 2007/06/28 07:22:50
bodea Exp $ */
#ifndef __FAKE_EPOLL_H__
#define __FAKE_EPOLL_H__
#ifndef __FAKE_EPOLL_H__
#define __FAKE_EPOLL_H__
@@
-150,6
+150,9
@@
static int epoll_wait(int epfd __attribute__ ((unused)),
tp = 0;
n = select(_epoll_fds, &r, &w, 0, tp);
tp = 0;
n = select(_epoll_fds, &r, &w, 0, tp);
+ if (n < 0)
+ return n;
+
if (n > maxevents)
n = maxevents;
if (n > maxevents)
n = maxevents;