remove pwl_mutex
Some checks are pending
C/C++ CI Linux / ${{ matrix.target }} (ubuntu-24.04-arm) (push) Waiting to run
C/C++ CI Linux / ${{ matrix.target }} (ubuntu-latest) (push) Waiting to run
C/C++ CI MacOS / ${{ matrix.target }} (macos-15) (push) Waiting to run
C/C++ CI Windows / ${{ matrix.target }} (windows-2022) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (macos-15) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (ubuntu-24.04-arm) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (ubuntu-latest) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (windows-2022) (push) Waiting to run

This commit is contained in:
Vladimir Dubrovin 2026-04-26 20:43:13 +03:00
parent 62ceb36157
commit 760a521df8
4 changed files with 24 additions and 28 deletions

View File

@ -513,7 +513,6 @@ int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int
pthread_mutex_init(&connlim_mutex, NULL); pthread_mutex_init(&connlim_mutex, NULL);
pthread_mutex_init(&hash_mutex, NULL); pthread_mutex_init(&hash_mutex, NULL);
pthread_mutex_init(&tc_mutex, NULL); pthread_mutex_init(&tc_mutex, NULL);
pthread_mutex_init(&pwl_mutex, NULL);
pthread_mutex_init(&log_mutex, NULL); pthread_mutex_init(&log_mutex, NULL);
#ifndef NORADIUS #ifndef NORADIUS
pthread_mutex_init(&rad_mutex, NULL); pthread_mutex_init(&rad_mutex, NULL);

View File

@ -23,7 +23,6 @@
pthread_mutex_t bandlim_mutex; pthread_mutex_t bandlim_mutex;
pthread_mutex_t connlim_mutex; pthread_mutex_t connlim_mutex;
pthread_mutex_t tc_mutex; pthread_mutex_t tc_mutex;
pthread_mutex_t pwl_mutex;
pthread_mutex_t hash_mutex; pthread_mutex_t hash_mutex;
pthread_mutex_t config_mutex; pthread_mutex_t config_mutex;

View File

@ -48,31 +48,30 @@ struct symbol symbols[] = {
{symbols+23, "bandlim_mutex", (void *) &bandlim_mutex}, {symbols+23, "bandlim_mutex", (void *) &bandlim_mutex},
{symbols+24, "tc_mutex", (void *) &tc_mutex}, {symbols+24, "tc_mutex", (void *) &tc_mutex},
{symbols+25, "hash_mutex", (void *) &hash_mutex}, {symbols+25, "hash_mutex", (void *) &hash_mutex},
{symbols+26, "pwl_mutex", (void *) &pwl_mutex}, {symbols+26, "linenum", (void *) &linenum},
{symbols+27, "linenum", (void *) &linenum}, {symbols+27, "proxy_stringtable", (void *) proxy_stringtable},
{symbols+28, "proxy_stringtable", (void *) proxy_stringtable}, {symbols+28, "en64", (void *) en64},
{symbols+29, "en64", (void *) en64}, {symbols+29, "de64", (void *) de64},
{symbols+30, "de64", (void *) de64}, {symbols+30, "tohex", (void *) tohex},
{symbols+31, "tohex", (void *) tohex}, {symbols+31, "fromhex", (void *) fromhex},
{symbols+32, "fromhex", (void *) fromhex}, {symbols+32, "dnspr", (void *) dnsprchild},
{symbols+33, "dnspr", (void *) dnsprchild}, {symbols+33, "pop3p", (void *) pop3pchild},
{symbols+34, "pop3p", (void *) pop3pchild}, {symbols+34, "proxy", (void *) proxychild},
{symbols+35, "proxy", (void *) proxychild}, {symbols+35, "socks", (void *) sockschild},
{symbols+36, "socks", (void *) sockschild}, {symbols+36, "tcppm", (void *) tcppmchild},
{symbols+37, "tcppm", (void *) tcppmchild}, {symbols+37, "udppm", (void *) udppmchild},
{symbols+38, "udppm", (void *) udppmchild}, {symbols+38, "admin", (void *) adminchild},
{symbols+39, "admin", (void *) adminchild}, {symbols+39, "ftppr", (void *) ftpprchild},
{symbols+40, "ftppr", (void *) ftpprchild}, {symbols+40, "smtpp", (void *) smtppchild},
{symbols+41, "smtpp", (void *) smtppchild}, {symbols+41, "auto", (void *) smtppchild},
{symbols+42, "auto", (void *) smtppchild}, {symbols+42, "tlspr", (void *) smtppchild},
{symbols+43, "tlspr", (void *) smtppchild}, {symbols+43, "authfuncs", (void *) &authfuncs},
{symbols+44, "authfuncs", (void *) &authfuncs}, {symbols+44, "commandhandlers", (void *) &commandhandlers},
{symbols+45, "commandhandlers", (void *) &commandhandlers}, {symbols+45, "decodeurl", (void *) decodeurl},
{symbols+46, "decodeurl", (void *) decodeurl}, {symbols+46, "parsestr", (void *) parsestr},
{symbols+47, "parsestr", (void *) parsestr}, {symbols+47, "make_ace", (void *) make_ace},
{symbols+48, "make_ace", (void *) make_ace}, {symbols+48, "freeacl", (void *) freeacl},
{symbols+49, "freeacl", (void *) freeacl}, {symbols+49, "handleredirect", (void *) handleredirect},
{symbols+50, "handleredirect", (void *) handleredirect},
{NULL, "", NULL} {NULL, "", NULL}
}; };

View File

@ -314,7 +314,6 @@ extern pthread_mutex_t bandlim_mutex;
extern pthread_mutex_t connlim_mutex; extern pthread_mutex_t connlim_mutex;
extern pthread_mutex_t hash_mutex; extern pthread_mutex_t hash_mutex;
extern pthread_mutex_t tc_mutex; extern pthread_mutex_t tc_mutex;
extern pthread_mutex_t pwl_mutex;
extern pthread_mutex_t log_mutex; extern pthread_mutex_t log_mutex;
extern pthread_mutex_t rad_mutex; extern pthread_mutex_t rad_mutex;
extern struct datatype datatypes[64]; extern struct datatype datatypes[64];