mirror of
https://github.com/3proxy/3proxy.git
synced 2026-04-28 15:10:12 +08:00
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
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:
parent
62ceb36157
commit
760a521df8
@ -513,7 +513,6 @@ int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int
|
||||
pthread_mutex_init(&connlim_mutex, NULL);
|
||||
pthread_mutex_init(&hash_mutex, NULL);
|
||||
pthread_mutex_init(&tc_mutex, NULL);
|
||||
pthread_mutex_init(&pwl_mutex, NULL);
|
||||
pthread_mutex_init(&log_mutex, NULL);
|
||||
#ifndef NORADIUS
|
||||
pthread_mutex_init(&rad_mutex, NULL);
|
||||
|
||||
@ -23,7 +23,6 @@
|
||||
pthread_mutex_t bandlim_mutex;
|
||||
pthread_mutex_t connlim_mutex;
|
||||
pthread_mutex_t tc_mutex;
|
||||
pthread_mutex_t pwl_mutex;
|
||||
pthread_mutex_t hash_mutex;
|
||||
pthread_mutex_t config_mutex;
|
||||
|
||||
|
||||
@ -48,31 +48,30 @@ struct symbol symbols[] = {
|
||||
{symbols+23, "bandlim_mutex", (void *) &bandlim_mutex},
|
||||
{symbols+24, "tc_mutex", (void *) &tc_mutex},
|
||||
{symbols+25, "hash_mutex", (void *) &hash_mutex},
|
||||
{symbols+26, "pwl_mutex", (void *) &pwl_mutex},
|
||||
{symbols+27, "linenum", (void *) &linenum},
|
||||
{symbols+28, "proxy_stringtable", (void *) proxy_stringtable},
|
||||
{symbols+29, "en64", (void *) en64},
|
||||
{symbols+30, "de64", (void *) de64},
|
||||
{symbols+31, "tohex", (void *) tohex},
|
||||
{symbols+32, "fromhex", (void *) fromhex},
|
||||
{symbols+33, "dnspr", (void *) dnsprchild},
|
||||
{symbols+34, "pop3p", (void *) pop3pchild},
|
||||
{symbols+35, "proxy", (void *) proxychild},
|
||||
{symbols+36, "socks", (void *) sockschild},
|
||||
{symbols+37, "tcppm", (void *) tcppmchild},
|
||||
{symbols+38, "udppm", (void *) udppmchild},
|
||||
{symbols+39, "admin", (void *) adminchild},
|
||||
{symbols+40, "ftppr", (void *) ftpprchild},
|
||||
{symbols+41, "smtpp", (void *) smtppchild},
|
||||
{symbols+42, "auto", (void *) smtppchild},
|
||||
{symbols+43, "tlspr", (void *) smtppchild},
|
||||
{symbols+44, "authfuncs", (void *) &authfuncs},
|
||||
{symbols+45, "commandhandlers", (void *) &commandhandlers},
|
||||
{symbols+46, "decodeurl", (void *) decodeurl},
|
||||
{symbols+47, "parsestr", (void *) parsestr},
|
||||
{symbols+48, "make_ace", (void *) make_ace},
|
||||
{symbols+49, "freeacl", (void *) freeacl},
|
||||
{symbols+50, "handleredirect", (void *) handleredirect},
|
||||
{symbols+26, "linenum", (void *) &linenum},
|
||||
{symbols+27, "proxy_stringtable", (void *) proxy_stringtable},
|
||||
{symbols+28, "en64", (void *) en64},
|
||||
{symbols+29, "de64", (void *) de64},
|
||||
{symbols+30, "tohex", (void *) tohex},
|
||||
{symbols+31, "fromhex", (void *) fromhex},
|
||||
{symbols+32, "dnspr", (void *) dnsprchild},
|
||||
{symbols+33, "pop3p", (void *) pop3pchild},
|
||||
{symbols+34, "proxy", (void *) proxychild},
|
||||
{symbols+35, "socks", (void *) sockschild},
|
||||
{symbols+36, "tcppm", (void *) tcppmchild},
|
||||
{symbols+37, "udppm", (void *) udppmchild},
|
||||
{symbols+38, "admin", (void *) adminchild},
|
||||
{symbols+39, "ftppr", (void *) ftpprchild},
|
||||
{symbols+40, "smtpp", (void *) smtppchild},
|
||||
{symbols+41, "auto", (void *) smtppchild},
|
||||
{symbols+42, "tlspr", (void *) smtppchild},
|
||||
{symbols+43, "authfuncs", (void *) &authfuncs},
|
||||
{symbols+44, "commandhandlers", (void *) &commandhandlers},
|
||||
{symbols+45, "decodeurl", (void *) decodeurl},
|
||||
{symbols+46, "parsestr", (void *) parsestr},
|
||||
{symbols+47, "make_ace", (void *) make_ace},
|
||||
{symbols+48, "freeacl", (void *) freeacl},
|
||||
{symbols+49, "handleredirect", (void *) handleredirect},
|
||||
{NULL, "", NULL}
|
||||
};
|
||||
|
||||
|
||||
@ -314,7 +314,6 @@ extern pthread_mutex_t bandlim_mutex;
|
||||
extern pthread_mutex_t connlim_mutex;
|
||||
extern pthread_mutex_t hash_mutex;
|
||||
extern pthread_mutex_t tc_mutex;
|
||||
extern pthread_mutex_t pwl_mutex;
|
||||
extern pthread_mutex_t log_mutex;
|
||||
extern pthread_mutex_t rad_mutex;
|
||||
extern struct datatype datatypes[64];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user