标签: linux api winapi memory-management freebsd
我正在寻找以下WinAPI的等效方法(在FreeBSD和Linux中):
的CreateFile();或OpenFile();
的CreateFileMapping();
MapViewOfFile();
答案 0 :(得分:8)
这些怎么样?
open(2)
creat(2)
shm_open
mmap
不完全等同,但应该让你开始。