aboutsummaryrefslogblamecommitdiff
path: root/ARMeilleure/Memory/IJitMemoryAllocator.cs
blob: 5745a4bfe661eacdd2a6cc12b1ab44df9646d519 (plain) (tree)
1
2
3
4
5
6
7
8






                                             
namespace ARMeilleure.Memory
{
    public interface IJitMemoryAllocator
    {
        IJitMemoryBlock Allocate(ulong size);
        IJitMemoryBlock Reserve(ulong size);
    }
}