Files
linux-packaging-mono/mcs/class/System.Private.CoreLib/System.Runtime/RuntimeImports.cs

29 lines
740 B
C#
Raw Normal View History

using System.Runtime.CompilerServices;
#if BIT64
using nuint = System.UInt64;
#else
using nuint = System.UInt32;
#endif
namespace System.Runtime
{
static class RuntimeImports
{
internal static unsafe void RhZeroMemory (ref byte b, nuint byteLength)
{
fixed (byte* bytePointer = &b) {
ZeroMemory (bytePointer, byteLength);
}
}
internal static unsafe void RhZeroMemory (IntPtr p, UIntPtr byteLength) => ZeroMemory ((void*) p, (nuint) byteLength);
[MethodImpl (MethodImplOptions.InternalCall)]
static extern unsafe void ZeroMemory (void* p, nuint byteLength);
[MethodImpl (MethodImplOptions.InternalCall)]
internal extern static void RhBulkMoveWithWriteBarrier (ref byte dmem, ref byte smem, nuint size);
}
}