X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fthreads.c;h=aec41a7c4d92b57292f6fc99e04a5ada5b025626;hp=21f585cdae75671707f0adcb33684f7ac30cb3cf;hb=51b18018ff923284d76a36cbd421d62abf6afcf4;hpb=156a9972863bd789ba11c77c759d579ea415a17d diff --git a/citadel/threads.c b/citadel/threads.c index 21f585cda..aec41a7c4 100644 --- a/citadel/threads.c +++ b/citadel/threads.c @@ -1,7 +1,7 @@ /* * Thread handling stuff for Citadel server * - * Copyright (c) 1987-2019 by the citadel.org team + * 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. @@ -53,6 +53,7 @@ int try_critical_section(int which_one) * transaction; this could lead to deadlock. */ if ( (which_one != S_FLOORCACHE) + && (which_one != S_NETCONFIGS) ) { cdb_check_handles(); } @@ -70,6 +71,7 @@ void begin_critical_section(int which_one) * transaction; this could lead to deadlock. */ if ( (which_one != S_FLOORCACHE) + && (which_one != S_NETCONFIGS) ) { cdb_check_handles(); }