summaryrefslogtreecommitdiff
path: root/evport.c
diff options
context:
space:
mode:
Diffstat (limited to 'evport.c')
-rw-r--r--evport.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/evport.c b/evport.c
index 7f3b3947..a014386b 100644
--- a/evport.c
+++ b/evport.c
@@ -158,7 +158,7 @@ evport_init(struct event_base *base)
evpd->ed_npending = 0;
- evsig_init(base);
+ evsig_init_(base);
return (evpd);
}
@@ -291,7 +291,7 @@ evport_dispatch(struct event_base *base, struct timeval *tv)
if (fd != -1) {
/* We might have cleared out this event; we need
* to be sure that it's still set. */
- fdi = evmap_io_get_fdinfo(&base->io, fd);
+ fdi = evmap_io_get_fdinfo_(&base->io, fd);
}
if (fdi != NULL && FDI_HAS_EVENTS(fdi)) {
@@ -326,7 +326,7 @@ evport_dispatch(struct event_base *base, struct timeval *tv)
port_event_t *pevt = &pevtlist[i];
int fd = (int) pevt->portev_object;
struct fd_info *fdi = pevt->portev_user;
- /*EVUTIL_ASSERT(evmap_io_get_fdinfo(&base->io, fd) == fdi);*/
+ /*EVUTIL_ASSERT(evmap_io_get_fdinfo_(&base->io, fd) == fdi);*/
check_evportop(epdp);
check_event(pevt);
@@ -353,7 +353,7 @@ evport_dispatch(struct event_base *base, struct timeval *tv)
if (pevt->portev_events & (POLLERR|POLLHUP|POLLNVAL))
res |= EV_READ|EV_WRITE;
- evmap_io_active(base, fd, res);
+ evmap_io_active_(base, fd, res);
} /* end of all events gotten */
epdp->ed_npending = nevents;
@@ -436,7 +436,7 @@ evport_dealloc(struct event_base *base)
{
struct evport_data *evpd = base->evbase;
- evsig_dealloc(base);
+ evsig_dealloc_(base);
close(evpd->ed_port);