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

@@ -121,5 +121,11 @@ class LockMutexGuard {
private:
Mutex& m_mutex;
public:
LockMutexGuard(const LockMutexGuard&) = delete;
LockMutexGuard& operator=(const LockMutexGuard&) = delete;
LockMutexGuard(LockMutexGuard&&) noexcept = delete;
LockMutexGuard& operator=(LockMutexGuard&&) noexcept = delete;
};
} // namespace Lib