MapNamedSharedMemoryRegion Error

Dear all,

I’m currently trying to implement a shared memory into unreal but wenn I use the following Code, I always get an error message:“LogHAL:Error: FGenericPlatformMemory::MapNamedSharedMemoryRegion not implemented on this platform”

FGenericPlatformMemory::FSharedMemoryRegion* SharedMemoryRegion =
		FGenericPlatformMemory::MapNamedSharedMemoryRegion(
			TEXT("shared_memory_name"),
			true,
			FGenericPlatformMemory::ESharedMemoryAccess::Write,
		16
	);

Has anyone an idea, how to fix that?
Thanks!