Skip to content

Commit

Permalink
treate EINVAL as per fd error in kqueue; use argument for debug macro…
Browse files Browse the repository at this point in the history
…s in

poll; version 1.1a; EINVAL fix from Nick Mathewson


svn:r168
  • Loading branch information
provos committed Jun 11, 2005
1 parent 81bd0a0 commit 9938aaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl configure.in for libevent
dnl Dug Song <dugsong@monkey.org>
AC_INIT(event.c)

AM_INIT_AUTOMAKE(libevent,1.0f)
AM_INIT_AUTOMAKE(libevent,1.1a)
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE

Expand Down
3 changes: 3 additions & 0 deletions kqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,14 @@ kq_dispatch(struct event_base *base, void *arg, struct timeval *tv)
* closed,
* ENOENT when the file discriptor was closed and
* then reopened.
* EINVAL for some reasons not understood; EINVAL
* should not be returned ever; but FreeBSD does :-\
* An error is also indicated when a callback deletes
* an event we are still processing. In that case
* the data field is set to ENOENT.
*/
if (events[i].data == EBADF ||
events[i].data == EINVAL ||
events[i].data == ENOENT)
continue;
errno = events[i].data;
Expand Down
2 changes: 1 addition & 1 deletion poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ poll_dispatch(struct event_base *base, void *arg, struct timeval *tv)
if (evsignal_deliver(&pop->evsigmask) == -1)
return (-1);

poll_check_ok();
poll_check_ok(pop);
sec = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000;
nfds = pop->nfds;
res = poll(pop->event_set, nfds, sec);
Expand Down

0 comments on commit 9938aaf

Please sign in to comment.