Example #1
0
 internal WindowsImplementation(VirtualAllocHandle handle, int byteOffsetIntoHandle, int elementCount)
 {
     _handle = handle;
     _byteOffsetIntoHandle = byteOffsetIntoHandle;
     _elementCount         = elementCount;
     _memoryManager        = new BoundedMemoryManager(this);
 }
Example #2
0
 internal VirtualAllocWrapper(VirtualAllocHandle handle, int offset, int length)
 {
     _handle = handle;
     _offset = offset;
     _length = length;
 }