From 5ce139751bb77879f127dfa876cf1999717b69fc Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 8 Dec 2006 18:40:13 +0000 Subject: r20087: Ensure we clean up any random pending events we may have inherited from our parent in the winbindd forked child. Jeremy. (This used to be commit 0a1352f440a9d9b974ad8d571b2e48a43a15b6cc) --- source3/lib/events.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'source3/lib/events.c') diff --git a/source3/lib/events.c b/source3/lib/events.c index d6f3c328288..66aefa3b52d 100644 --- a/source3/lib/events.c +++ b/source3/lib/events.c @@ -130,3 +130,18 @@ int set_event_dispatch_time(const char *event_name, struct timeval when) } return num_events; } + +/* Returns 1 if event was found and cancelled, 0 otherwise. */ + +int cancel_named_event(const char *event_name) +{ + struct timed_event *te; + + for (te = timed_events; te; te = te->next) { + if (strcmp(event_name, te->event_name) == 0) { + TALLOC_FREE(te); + return 1; + } + } + return 0; +} -- cgit