Print backtrace on deadlocks

This commit is contained in:
Alex
2023-05-05 18:21:31 +03:00
parent 953401c4b2
commit 59ebcdfa8e
2 changed files with 51 additions and 29 deletions

View File

@ -38,6 +38,7 @@ size_t GetLocksCount();
/** @brief Please use this macro to create a new lock. */
class LockClass
{
public:
struct SpinLockData
{
std::atomic_uint64_t LockData = 0x0;