mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-04 15:55:51 +00:00
Update boo
This commit is contained in:
parent
4c974c5275
commit
56a0661d33
2
hecl/extern/boo
vendored
2
hecl/extern/boo
vendored
@ -1 +1 @@
|
|||||||
Subproject commit fdddeebf52c9471b85846b6965070f22c45ff61f
|
Subproject commit 1a71ed813a8808032b73822605aec7f80f491f1f
|
@ -39,6 +39,15 @@
|
|||||||
#include "SystemChar.hpp"
|
#include "SystemChar.hpp"
|
||||||
#include "FourCC.hpp"
|
#include "FourCC.hpp"
|
||||||
|
|
||||||
|
#if defined(__has_feature)
|
||||||
|
#if __has_feature(thread_sanitizer)
|
||||||
|
#define HECL_NO_SANITIZE_THREAD __attribute__((no_sanitize("thread")))
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#ifndef HECL_NO_SANITIZE_THREAD
|
||||||
|
#define HECL_NO_SANITIZE_THREAD
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace hecl
|
namespace hecl
|
||||||
{
|
{
|
||||||
namespace Database
|
namespace Database
|
||||||
|
@ -72,7 +72,7 @@ void ClientProcess::Worker::proc()
|
|||||||
ClientProcess::ThreadWorker.reset(this);
|
ClientProcess::ThreadWorker.reset(this);
|
||||||
|
|
||||||
char thrName[64];
|
char thrName[64];
|
||||||
snprintf(thrName, 64, "HECL Client Worker %d", m_idx);
|
snprintf(thrName, 64, "HECL Worker%d", m_idx);
|
||||||
logvisor::RegisterThreadName(thrName);
|
logvisor::RegisterThreadName(thrName);
|
||||||
|
|
||||||
std::unique_lock<std::mutex> lk(m_proc.m_mutex);
|
std::unique_lock<std::mutex> lk(m_proc.m_mutex);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user