2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 22:45:39 +00:00

convert sender, arg, action, etc. to ev_sender, ev_arg, ev_action, etc.

This commit is contained in:
Michael Graff
2000-04-17 19:22:44 +00:00
parent 0d89e0d55c
commit e44487bfc2
46 changed files with 426 additions and 418 deletions

View File

@@ -31,9 +31,9 @@
static void
destroy(isc_event_t *event) {
isc_mem_t *mctx = event->destroy_arg;
isc_mem_t *mctx = event->ev_destroy_arg;
isc_mem_put(mctx, event, event->size);
isc_mem_put(mctx, event, event->ev_size);
}
isc_event_t *
@@ -64,8 +64,8 @@ isc_event_free(isc_event_t **eventp) {
event = *eventp;
REQUIRE(event != NULL);
if (event->destroy != NULL)
(event->destroy)(event);
if (event->ev_destroy != NULL)
(event->ev_destroy)(event);
*eventp = NULL;
}