mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
shared_mutex_t implemented GUI Emu Callbacks rewritten fxm::import, fxm::import_always implemented cellMsgDialog rewritten Emu.CallAfter improved (returns std::future)
14 lines
291 B
C++
14 lines
291 B
C++
#include "stdafx.h"
|
|
#include "IdManager.h"
|
|
|
|
std::mutex idm::g_mutex;
|
|
|
|
std::unordered_map<u32, id_data_t> idm::g_map;
|
|
|
|
u32 idm::g_last_raw_id = 0;
|
|
|
|
thread_local u32 idm::g_tls_last_id = 0xdeadbeef;
|
|
|
|
std::mutex fxm::g_mutex;
|
|
|
|
std::unordered_map<const void*, std::shared_ptr<void>> fxm::g_map;
|