I have some code where I frequently copy a large block of memory, often after making only very small changes to it.
I have implemented a system which tracks the chan
You should be able to open your own memory via /proc/$PID/mem and then mmap() the interesting part of it with MAP_PRIVATE to some other place.