|
|
|
|
|
by nialv7
135 days ago
|
|
The mmap/msync one is incorrect I believe? (Correct me if I am wrong). msync() sync content in memory back to _disk_. But multiple processes mapping the same file always see the same content (barring memory consistency, caching, etc.) already. Unless the file is mapped with MAP_PRIVATE. |
|