17 lines
441 B
C#
17 lines
441 B
C#
using UnmanagedMMU.Allocators;
|
|
|
|
namespace UnmanagedMMU.Handles
|
|
{
|
|
internal sealed unsafe class SegmentedMemoryHandle<T> : MemoryHandleBase<T> where T : unmanaged
|
|
{
|
|
public SegmentedMemoryHandle(void* ptr, nuint byteLength, nuint alignment, IUnmanagedMemoryOwner owner) : base(ptr, byteLength, alignment, owner)
|
|
{
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
}
|