diff options
Diffstat (limited to 'lib/tevent/tevent_internal.h')
-rw-r--r-- | lib/tevent/tevent_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tevent/tevent_internal.h b/lib/tevent/tevent_internal.h index f29e9c62f5..e090ee2bb1 100644 --- a/lib/tevent/tevent_internal.h +++ b/lib/tevent/tevent_internal.h @@ -133,12 +133,12 @@ struct tevent_context { /* list of timed events - used by common code */ struct tevent_timer *timer_events; + /* list of signal events - used by common code */ + struct tevent_signal *signal_events; + /* this is private for the events_ops implementation */ void *additional_data; - /* number of signal event handlers */ - int num_signal_handlers; - /* pipe hack used with signal handlers */ struct tevent_fd *pipe_fde; |