mirror of
https://github.com/cuberite/libevent.git
synced 2025-09-10 13:04:23 -04:00
some fixes from openbsd via brad
svn:r207
This commit is contained in:
parent
682d598ada
commit
7517ef2a81
3
event.c
3
event.c
@ -48,6 +48,7 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include <errno.h>
|
||||
#include <signal.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
@ -110,7 +111,7 @@ struct event_base *current_base = NULL;
|
||||
|
||||
/* Handle signals - This is a deprecated interface */
|
||||
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 */
|
||||
static void event_queue_insert(struct event_base *, struct event *, int);
|
||||
|
4
poll.c
4
poll.c
@ -75,7 +75,7 @@ int poll_del (void *, struct event *);
|
||||
int poll_recalc (struct event_base *, void *, int);
|
||||
int poll_dispatch (struct event_base *, void *, struct timeval *);
|
||||
|
||||
struct eventop pollops = {
|
||||
const struct eventop pollops = {
|
||||
"poll",
|
||||
poll_init,
|
||||
poll_add,
|
||||
@ -89,7 +89,7 @@ poll_init(void)
|
||||
{
|
||||
struct pollop *pollop;
|
||||
|
||||
/* Disable kqueue when this environment variable is set */
|
||||
/* Disable poll when this environment variable is set */
|
||||
if (getenv("EVENT_NOPOLL"))
|
||||
return (NULL);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user