From 04479db879d04fb329022c3282d92bab94a48576 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. --- source/smbd/server.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source/smbd') diff --git a/source/smbd/server.c b/source/smbd/server.c index 4599cef41fb..579649cf0c4 100644 --- a/source/smbd/server.c +++ b/source/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