threading working ,fixed a big in sceKernelMapDirectMemory

This commit is contained in:
georgemoralis 2023-08-09 11:42:50 +03:00
parent 3e1386666b
commit e5f2f91a80
6 changed files with 22 additions and 11 deletions

View file

@ -3,6 +3,7 @@
#include <vector>
#include "Loader/Elf.h"
#include "Loader/SymbolsResolver.h"
#include "Lib/Threads.h"
struct DynamicModuleInfo;
class Linker;
@ -129,4 +130,5 @@ public:
std::vector<Module*> m_modules;
SymbolsResolver* m_HLEsymbols = nullptr;
Lib::Mutex m_mutex;
};