forked from MeloNX/MeloNX
* Move most of signal handling to Ryujinx.Cpu project * Format whitespace * Remove unused member * Format whitespace * This does not need to be public anymore
9 lines
177 B
C#
9 lines
177 B
C#
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryAllocator
|
|
{
|
|
IJitMemoryBlock Allocate(ulong size);
|
|
IJitMemoryBlock Reserve(ulong size);
|
|
}
|
|
}
|