summaryrefslogtreecommitdiff
path: root/win32select.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-09-15 01:54:51 -0400
committerNick Mathewson <nickm@torproject.org>2010-09-15 01:54:51 -0400
commit4858b7949c665c3b6dafbf69665b9d126fc33e8f (patch)
tree82663190aa13c0915975370c0f4dd623f42896ea /win32select.c
parent95a7d418ab4ff332bc299813e6fc83c9be4ed0ec (diff)
downloadlibevent-4858b7949c665c3b6dafbf69665b9d126fc33e8f.tar.gz
Remove the now-useless evsig_caught and evsig_process
Diffstat (limited to 'win32select.c')
-rw-r--r--win32select.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/win32select.c b/win32select.c
index 103acb5a..26c107f2 100644
--- a/win32select.c
+++ b/win32select.c
@@ -304,7 +304,6 @@ win32_dispatch(struct event_base *base, struct timeval *tv)
msec = LONG_MAX;
/* Windows doesn't like you to call select() with no sockets */
Sleep(msec);
- evsig_process(base);
return (0);
}
@@ -320,10 +319,7 @@ win32_dispatch(struct event_base *base, struct timeval *tv)
event_debug(("%s: select returned %d", __func__, res));
if (res <= 0) {
- evsig_process(base);
return res;
- } else if (base->sig.evsig_caught) {
- evsig_process(base);
}
if (win32op->readset_out->fd_count) {