mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
Fix crash in JIT when compiling LLVM blocks
This commit is contained in:
parent
4f97ea8da7
commit
56d35bf409
@ -185,8 +185,13 @@ static u8* add_jit_memory(usz size, usz align)
|
||||
if (olda != newa) [[unlikely]]
|
||||
{
|
||||
#ifndef CAN_OVERCOMMIT
|
||||
// Commit more memory
|
||||
// Commit more memory.
|
||||
// NOTE: Calling memory commit in parallel on the same addresses can throw a permission error.
|
||||
{
|
||||
static std::mutex mcommit_lock;
|
||||
std::lock_guard lock(mcommit_lock);
|
||||
utils::memory_commit(pointer + olda, newa - olda, Prot);
|
||||
}
|
||||
#endif
|
||||
// Acknowledge committed memory
|
||||
Ctr.atomic_op([&](u64& ctr)
|
||||
|
Loading…
Reference in New Issue
Block a user