mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
add primitive InterlockedOr64 implementation
use non msvc specific type for int64_t add umul for gcc
This commit is contained in:
parent
b05bd51216
commit
96e229abfa
2 changed files with 20 additions and 2 deletions
|
@ -406,7 +406,7 @@ public:
|
|||
}
|
||||
else
|
||||
{
|
||||
InterlockedOr64((volatile __int64*)m_indval, ((u64)value << 32) | 1);
|
||||
InterlockedOr64((volatile s64*)m_indval, ((u64)value << 32) | 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue