diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-05-06 17:52:11 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-05-06 17:52:11 +0000 |
commit | 078e66c8d24f4ad92d523e75db72618f68ec7e24 (patch) | |
tree | 1ca23402cc81c5dc17e48f6b42089c572d9f553f /source3/smbd/process.c | |
parent | e4719169747ef03bbd4e7835d099e7901b65c29d (diff) | |
download | samba-078e66c8d24f4ad92d523e75db72618f68ec7e24.tar.gz samba-078e66c8d24f4ad92d523e75db72618f68ec7e24.tar.bz2 samba-078e66c8d24f4ad92d523e75db72618f68ec7e24.zip |
Add metze's exit and idle event patch
(This used to be commit e599eba851db40816c684da2b7b1be4b978166e0)
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r-- | source3/smbd/process.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 54fd4a90d9..18acb35f7a 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1114,6 +1114,9 @@ static BOOL timeout_processing(int deadtime, int *select_timeout, time_t *last_t /* become root again if waiting */ change_to_root_user(); + /* run all registered idle events */ + smb_run_idle_events(t); + /* check if we need to reload services */ check_reload(t); @@ -1277,6 +1280,10 @@ void smbd_process(void) lp_talloc_free(); main_loop_talloc_free(); + /* run all registered idle events */ + smb_run_idle_events(time(NULL)); + + /* Did someone ask for immediate checks on things like blocking locks ? */ if (select_timeout == 0) { if(!timeout_processing( deadtime, &select_timeout, &last_timeout_processing_time)) |