summaryrefslogtreecommitdiff
path: root/source3/smbd/server.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-10-18 10:40:36 +0000
committerAndrew Tridgell <tridge@samba.org>2001-10-18 10:40:36 +0000
commit904fca76849c74665d2a7cc6c91ff3f7ed6f6c11 (patch)
tree8fe106a7a1aaf85ead4b4d21469b9e19f20e407e /source3/smbd/server.c
parent5ad7448359c7bc1d3b1579f105b7324290bf21ec (diff)
downloadsamba-904fca76849c74665d2a7cc6c91ff3f7ed6f6c11.tar.gz
samba-904fca76849c74665d2a7cc6c91ff3f7ed6f6c11.tar.bz2
samba-904fca76849c74665d2a7cc6c91ff3f7ed6f6c11.zip
got rid of start_background_queue()
THIS WAS A DISASTER! it created hundreds of processes on the build farm machines, which we can't kill. (This used to be commit 04479db879d04fb329022c3282d92bab94a48576)
Diffstat (limited to 'source3/smbd/server.c')
-rw-r--r--source3/smbd/server.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 4599cef41f..579649cf0c 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -791,7 +791,12 @@ static void usage(char *pname)
/* Setup the main smbd so that we can get messages. */
claim_connection(NULL,"",MAXSTATUS,True);
- start_background_queue();
+ /*
+ DO NOT ENABLE THIS TILL YOU COPE WITH KILLING THESE TASKS AND INETD
+ THIS *killed* LOTS OF BUILD FARM MACHINES. IT CREATED HUNDREDS OF
+ smbd PROCESSES THAT NEVER DIE
+ start_background_queue();
+ */
if (!open_sockets(is_daemon,port))
exit(1);