mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-15 01:49:00 +00:00
2b4ec88dae
This follows discussions from #3413. Followup commits add clang-format file, script and blame ignore lists.
12 lines
311 B
C++
12 lines
311 B
C++
// SPDX-License-Identifier: MIT
|
|
#pragma once
|
|
|
|
namespace FEXCore::Core {
|
|
struct InternalThreadState;
|
|
}
|
|
|
|
namespace FEXCore::Allocator {
|
|
void LockBeforeFork(FEXCore::Core::InternalThreadState* Thread);
|
|
void UnlockAfterFork(FEXCore::Core::InternalThreadState* Thread, bool Child);
|
|
} // namespace FEXCore::Allocator
|