Reputation: 12890
I am looking for the equivalent methods (in FreeBSD & Linux) of the following WinAPI:
CreateFile(); or OpenFile();
CreateFileMapping();
MapViewOfFile();
Upvotes: 5
Views: 3509
Reputation: 182649
How about these ?
open(2)
creat(2)
shm_open
mmap
Not completely equivalent but should get you started.
Upvotes: 9