X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fthreads.c;h=ec8fc3feb6f1ff4cce2f2b3bc16da1d09bc8dfb0;hb=aa7365c86de8e26e796d3aa3fd605c85d8c26220;hp=a9fce4eb471282f59e5cbaf1ff5831496e9c3237;hpb=0c9601dbc42e6eb56a75a0e39bada0199616391a;p=citadel.git diff --git a/citadel/threads.c b/citadel/threads.c index a9fce4eb4..ec8fc3feb 100644 --- a/citadel/threads.c +++ b/citadel/threads.c @@ -4,18 +4,12 @@ * Copyright (c) 1987-2011 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. + * it under the terms of the GNU General Public License, version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include @@ -183,7 +177,10 @@ void InitializeMasterTSD(void) { memset(&masterTSD, 0, sizeof(struct thread_tsd)); } +extern void ShutDownEventQueues(void); +int EventQShuttingDown = 0; +int EVQShutDown = 0; /* * Initialize the thread system */ @@ -211,6 +208,14 @@ void go_threading(void) } /* When we get to this point we are getting ready to shut down our Citadel server */ + if (!EventQShuttingDown) + { + EventQShuttingDown = 1; + ShutDownEventQueues(); + } + while (!EVQShutDown) + usleep(1000); + terminate_all_sessions(); /* close all client sockets */ CtdlShutdownServiceHooks(); /* close all listener sockets to prevent new connections */