Remove event_base.evsigbase; nothing used it.

This commit is contained in:
Nick Mathewson 2010-09-15 12:50:31 -04:00
parent 4858b7949c
commit 38d09606ac
2 changed files with 0 additions and 3 deletions

View 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;

View File

@ -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;
}