From 38d09606acd9dfa9aba64390435a0901e491317f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 15 Sep 2010 12:50:31 -0400 Subject: [PATCH] Remove event_base.evsigbase; nothing used it. --- event-internal.h | 2 -- signal.c | 1 - 2 files changed, 3 deletions(-) diff --git a/event-internal.h b/event-internal.h index 0f891657..669ae2b0 100644 --- a/event-internal.h +++ b/event-internal.h @@ -177,8 +177,6 @@ struct event_base { /** Function pointers used to describe the backend that this event_base * uses for signals */ const struct eventop *evsigsel; - /** Pointer to signal backend-specific data*/ - void *evsigbase; /** Data to implement the common signal handelr code. */ struct evsig_info sig; diff --git a/signal.c b/signal.c index d95b5767..ce4673bb 100644 --- a/signal.c +++ b/signal.c @@ -204,7 +204,6 @@ evsig_init(struct event_base *base) base->sig.ev_signal.ev_flags |= EVLIST_INTERNAL; base->evsigsel = &evsigops; - base->evsigbase = &base->sig; return 0; } -- 2.40.0