some fixes from openbsd via brad

svn:r207
This commit is contained in:
Niels Provos 2006-03-28 04:16:14 +00:00
parent 682d598ada
commit 7517ef2a81
3 changed files with 7 additions and 6 deletions

View File

@ -48,6 +48,7 @@
#include <unistd.h> #include <unistd.h>
#endif #endif
#include <errno.h> #include <errno.h>
#include <signal.h>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
@ -110,7 +111,7 @@ struct event_base *current_base = NULL;
/* Handle signals - This is a deprecated interface */ /* Handle signals - This is a deprecated interface */
int (*event_sigcb)(void); /* Signal callback when gotsig is set */ int (*event_sigcb)(void); /* Signal callback when gotsig is set */
volatile int event_gotsig; /* Set in signal handler */ volatile sig_atomic_t event_gotsig; /* Set in signal handler */
/* Prototypes */ /* Prototypes */
static void event_queue_insert(struct event_base *, struct event *, int); static void event_queue_insert(struct event_base *, struct event *, int);

4
poll.c
View File

@ -75,7 +75,7 @@ int poll_del (void *, struct event *);
int poll_recalc (struct event_base *, void *, int); int poll_recalc (struct event_base *, void *, int);
int poll_dispatch (struct event_base *, void *, struct timeval *); int poll_dispatch (struct event_base *, void *, struct timeval *);
struct eventop pollops = { const struct eventop pollops = {
"poll", "poll",
poll_init, poll_init,
poll_add, poll_add,
@ -89,7 +89,7 @@ poll_init(void)
{ {
struct pollop *pollop; struct pollop *pollop;
/* Disable kqueue when this environment variable is set */ /* Disable poll when this environment variable is set */
if (getenv("EVENT_NOPOLL")) if (getenv("EVENT_NOPOLL"))
return (NULL); return (NULL);

View File

@ -93,7 +93,7 @@ select_init(void)
{ {
struct selectop *sop; struct selectop *sop;
/* Disable kqueue when this environment variable is set */ /* Disable select when this environment variable is set */
if (getenv("EVENT_NOSELECT")) if (getenv("EVENT_NOSELECT"))
return (NULL); return (NULL);