summaryrefslogtreecommitdiffstats
path: root/source/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
commit04479db879d04fb329022c3282d92bab94a48576 (patch)
tree2cc3725bd2224e3fef6cf9b61c55677fa5b96aac /source/smbd/server.c
parent353c290f059347265b9be2aa1010c2956da06485 (diff)
downloadsamba-04479db879d04fb329022c3282d92bab94a48576.tar.gz
samba-04479db879d04fb329022c3282d92bab94a48576.tar.xz
samba-04479db879d04fb329022c3282d92bab94a48576.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.
Diffstat (limited to 'source/smbd/server.c')
-rw-r--r--source/smbd/server.c7
1 files changed, 6 insertions, 1 deletions
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);