|
|
|
|
|
by pbalcer
2944 days ago
|
|
Yes, but to accomplish that you would have to use the MAP_FIXED flag, which is quite dangerous because it can replace previous mappings. That can lead to problems with dynamic memory allocation since almost all malloc() implementations use anonymous mmap. |
|
The actual hard part of persistent heaps isn't the persistence part. It's transactionality and upgrade management.