Fix SQL modules threading system.
This commit is contained in:
parent
af6c6850ec
commit
3fc438ffd1
|
@ -27,7 +27,7 @@ if AMXX.mysql_path:
|
||||||
binary.compiler.linkflags += [
|
binary.compiler.linkflags += [
|
||||||
os.path.join(AMXX.mysql_path, 'lib', 'opt', 'mysqlclient.lib'),
|
os.path.join(AMXX.mysql_path, 'lib', 'opt', 'mysqlclient.lib'),
|
||||||
os.path.join(AMXX.mysql_path, 'lib', 'opt', 'zlib.lib'),
|
os.path.join(AMXX.mysql_path, 'lib', 'opt', 'zlib.lib'),
|
||||||
'wsock32.lib'
|
'ws2_32.lib'
|
||||||
]
|
]
|
||||||
|
|
||||||
binary.sources = [
|
binary.sources = [
|
||||||
|
|
|
@ -66,8 +66,8 @@
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<AdditionalDependencies>wsock32.lib;..\..\..\..\mysql-5.0\lib\opt\mysqlclient.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>ws2_32.lib;..\..\..\..\mysql-5.0\lib\opt\mysqlclient.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
<IgnoreSpecificDefaultLibraries>LIBCMT;LIBCMT;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
<IgnoreSpecificDefaultLibraries>LIBCMT;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<ProgramDatabaseFile>$(OutDir)mysql2.pdb</ProgramDatabaseFile>
|
<ProgramDatabaseFile>$(OutDir)mysql2.pdb</ProgramDatabaseFile>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<AdditionalDependencies>wsock32.lib;..\..\..\..\mysql-5.0\lib\opt\mysqlclient.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>ws2_32.lib;..\..\..\..\mysql-5.0\lib\opt\mysqlclient.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
#include <ISQLDriver.h>
|
#include <ISQLDriver.h>
|
||||||
#if defined WIN32 || defined _WIN32
|
#if defined WIN32 || defined _WIN32
|
||||||
#include <winsock.h>
|
#include <WinSock2.h>
|
||||||
#endif
|
#endif
|
||||||
typedef unsigned long ulong;
|
typedef unsigned long ulong;
|
||||||
#include <mysql.h>
|
#include <mysql.h>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include "BaseWorker.h"
|
#include "BaseWorker.h"
|
||||||
|
|
||||||
#define DEFAULT_THINK_TIME_MS 200
|
#define DEFAULT_THINK_TIME_MS 25
|
||||||
|
|
||||||
class ThreadWorker : public BaseWorker, public IThread
|
class ThreadWorker : public BaseWorker, public IThread
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,6 +29,8 @@ void ShutdownThreading()
|
||||||
{
|
{
|
||||||
if (g_pWorker)
|
if (g_pWorker)
|
||||||
{
|
{
|
||||||
|
// Flush all the remaining job fast!
|
||||||
|
g_pWorker->SetMaxThreadsPerFrame(8192);
|
||||||
g_pWorker->Stop(true);
|
g_pWorker->Stop(true);
|
||||||
delete g_pWorker;
|
delete g_pWorker;
|
||||||
g_pWorker = NULL;
|
g_pWorker = NULL;
|
||||||
|
@ -316,7 +318,7 @@ void OnPluginsLoaded()
|
||||||
g_QueueLock = g_Threader.MakeMutex();
|
g_QueueLock = g_Threader.MakeMutex();
|
||||||
}
|
}
|
||||||
|
|
||||||
g_pWorker = new ThreadWorker(&g_Threader, 250);
|
g_pWorker = new ThreadWorker(&g_Threader, DEFAULT_THINK_TIME_MS);
|
||||||
if (!g_pWorker->Start())
|
if (!g_pWorker->Start())
|
||||||
{
|
{
|
||||||
delete g_pWorker;
|
delete g_pWorker;
|
||||||
|
@ -333,7 +335,7 @@ void StartFrame()
|
||||||
{
|
{
|
||||||
if (g_pWorker && (g_lasttime < gpGlobals->time))
|
if (g_pWorker && (g_lasttime < gpGlobals->time))
|
||||||
{
|
{
|
||||||
g_lasttime = gpGlobals->time + 0.05f;
|
g_lasttime = gpGlobals->time + 0.025f;
|
||||||
g_QueueLock->Lock();
|
g_QueueLock->Lock();
|
||||||
size_t remaining = g_ThreadQueue.size();
|
size_t remaining = g_ThreadQueue.size();
|
||||||
if (remaining)
|
if (remaining)
|
||||||
|
@ -364,6 +366,8 @@ void OnPluginsUnloading()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Flush all the remaining job fast!
|
||||||
|
g_pWorker->SetMaxThreadsPerFrame(8192);
|
||||||
g_pWorker->Stop(false);
|
g_pWorker->Stop(false);
|
||||||
delete g_pWorker;
|
delete g_pWorker;
|
||||||
g_pWorker = NULL;
|
g_pWorker = NULL;
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include "BaseWorker.h"
|
#include "BaseWorker.h"
|
||||||
|
|
||||||
#define DEFAULT_THINK_TIME_MS 500
|
#define DEFAULT_THINK_TIME_MS 25
|
||||||
|
|
||||||
class ThreadWorker : public BaseWorker, public IThread
|
class ThreadWorker : public BaseWorker, public IThread
|
||||||
{
|
{
|
||||||
|
|
|
@ -28,6 +28,8 @@ void ShutdownThreading()
|
||||||
{
|
{
|
||||||
if (g_pWorker)
|
if (g_pWorker)
|
||||||
{
|
{
|
||||||
|
// Flush all the remaining job fast!
|
||||||
|
g_pWorker->SetMaxThreadsPerFrame(8192);
|
||||||
g_pWorker->Stop(true);
|
g_pWorker->Stop(true);
|
||||||
delete g_pWorker;
|
delete g_pWorker;
|
||||||
g_pWorker = NULL;
|
g_pWorker = NULL;
|
||||||
|
@ -293,7 +295,7 @@ void OnPluginsLoaded()
|
||||||
g_QueueLock = g_Threader.MakeMutex();
|
g_QueueLock = g_Threader.MakeMutex();
|
||||||
}
|
}
|
||||||
|
|
||||||
g_pWorker = new ThreadWorker(&g_Threader, 250);
|
g_pWorker = new ThreadWorker(&g_Threader, DEFAULT_THINK_TIME_MS);
|
||||||
if (!g_pWorker->Start())
|
if (!g_pWorker->Start())
|
||||||
{
|
{
|
||||||
delete g_pWorker;
|
delete g_pWorker;
|
||||||
|
@ -310,7 +312,7 @@ void StartFrame()
|
||||||
{
|
{
|
||||||
if (g_pWorker && (g_lasttime < gpGlobals->time))
|
if (g_pWorker && (g_lasttime < gpGlobals->time))
|
||||||
{
|
{
|
||||||
g_lasttime = gpGlobals->time + 0.05f;
|
g_lasttime = gpGlobals->time + 0.025f;
|
||||||
g_QueueLock->Lock();
|
g_QueueLock->Lock();
|
||||||
size_t remaining = g_ThreadQueue.size();
|
size_t remaining = g_ThreadQueue.size();
|
||||||
if (remaining)
|
if (remaining)
|
||||||
|
@ -341,6 +343,8 @@ void OnPluginsUnloading()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Flush all the remaining job fast!
|
||||||
|
g_pWorker->SetMaxThreadsPerFrame(8192);
|
||||||
g_pWorker->Stop(false);
|
g_pWorker->Stop(false);
|
||||||
delete g_pWorker;
|
delete g_pWorker;
|
||||||
g_pWorker = NULL;
|
g_pWorker = NULL;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user