diff options
author | Jeremy Allison <jra@samba.org> | 2003-01-30 23:55:58 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-01-30 23:55:58 +0000 |
commit | bbf9f09ee5c58e348eef33448d2c38e588adb66a (patch) | |
tree | 69d4922f84219502a123dc29c52a5f96d5f048d2 /source3/smbd | |
parent | 920287bf6b6950abfac53e6430954aee7e76bd15 (diff) | |
download | samba-bbf9f09ee5c58e348eef33448d2c38e588adb66a.tar.gz samba-bbf9f09ee5c58e348eef33448d2c38e588adb66a.tar.bz2 samba-bbf9f09ee5c58e348eef33448d2c38e588adb66a.zip |
Add 3 second timeout when terminating server and sending print notify
messages. Stops build-up of large numbers of smbd's waiting to terminate
on large print throughput.
Jeremy.
(This used to be commit 07efebb98473cb3d4adc6b2e0afef3f06dcc99b8)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 2 | ||||
-rw-r--r-- | source3/smbd/server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 98ec6ce184..c002abad16 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1228,7 +1228,7 @@ machine %s in domain %s.\n", global_myname(), lp_workgroup() )); /* Send any queued printer notify message to interested smbd's. */ - print_notify_send_messages(); + print_notify_send_messages(0); /* * Modify the select timeout depending upon diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 1d1061f6d8..e3cf9b92fd 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -550,7 +550,7 @@ void exit_server(const char *reason) invalidate_all_vuids(); - print_notify_send_messages(); + print_notify_send_messages(3); /* 3 second timeout. */ /* delete our entry in the connections database. */ yield_connection(NULL,""); |