From 904fca76849c74665d2a7cc6c91ff3f7ed6f6c11 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 18 Oct 2001 10:40:36 +0000 Subject: 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) --- source3/smbd/server.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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); -- cgit