X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fthreads.c;h=ab7157bd83a5a3cc1738a4debab3c5c5951d68b5;hb=HEAD;hp=d995c39826fc5795698bd2793c4c9f74ffa42b0a;hpb=6ee6b5fc488f5286ea81ef95503c91c43c434ced;p=citadel.git diff --git a/citadel/threads.c b/citadel/threads.c deleted file mode 100644 index d995c3982..000000000 --- a/citadel/threads.c +++ /dev/null @@ -1,174 +0,0 @@ -/* - * Thread handling stuff for Citadel server - * - * Copyright (c) 1987-2021 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, 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. - */ - -#include -#include -#include -#include -#include "modules_init.h" -#include "serv_extensions.h" -#include "ctdl_module.h" -#include "config.h" -#include "context.h" -#include "threads.h" - -int num_workers = 0; /* Current number of worker threads */ -int active_workers = 0; /* Number of ACTIVE worker threads */ -pthread_key_t ThreadKey; -pthread_mutex_t Critters[MAX_SEMAPHORES]; /* Things needing locking */ -struct thread_tsd masterTSD; -int server_shutting_down = 0; /* set to nonzero during shutdown */ -pthread_mutex_t ThreadCountMutex; - -void InitializeSemaphores(void) -{ - int i; - - /* Set up a bunch of semaphores to be used for critical sections */ - for (i=0; i