diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-02-09 13:16:55 +1100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-02-16 15:49:21 -0800 |
commit | 367c567c5f35db202474c8d3f730484538e1fb97 (patch) | |
tree | 6d4a05b6e2f2923fec8564d360eb7085a831d128 /source3/winbindd | |
parent | ab80995580f092811d6380caa9e71e4c5fda06f4 (diff) | |
download | samba-367c567c5f35db202474c8d3f730484538e1fb97.tar.gz samba-367c567c5f35db202474c8d3f730484538e1fb97.tar.bz2 samba-367c567c5f35db202474c8d3f730484538e1fb97.zip |
lib/util: Remove sys_poll as it is no longer needed
sys_poll() is only needed if the signal pipe is set up and used, but as
no signal handler ever writes to the pipe, this can all be removed.
signal based events are now handled via tevent.
Andrew Bartlett
Signed-off-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_dual.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c index d0bcd3bd40..f11dae7e08 100644 --- a/source3/winbindd/winbindd_dual.c +++ b/source3/winbindd/winbindd_dual.c @@ -1507,7 +1507,7 @@ static bool fork_domain_child(struct winbindd_child *child) (unsigned int)tp->tv_sec, (unsigned int)tp->tv_usec )); } - ret = sys_poll(pfds, num_pfds, timeout); + ret = poll(pfds, num_pfds, timeout); if (run_events_poll(winbind_event_context(), ret, pfds, num_pfds)) { |