Remove event_base.evsigbase; nothing used it.
authorNick Mathewson <nickm@torproject.org>
Wed, 15 Sep 2010 16:50:31 +0000 (12:50 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 15 Sep 2010 16:50:31 +0000 (12:50 -0400)
event-internal.h
signal.c

index 0f8916572e6ed8073408377293cdb1327e4b43d8..669ae2b07702be94b11d000940ccf6507309721d 100644 (file)
@@ -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;
 
index d95b57675f3f70c3b9337db158fcfbbe5e58b690..ce4673bb091e7e83ac493cce37368f1baa633e96 100644 (file)
--- 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;
 }