Data Segment Backups

Hi dears

I want to have a backup of the data segments of my running program. How do that in c++?
I need restore it a few seconds later.
Thanks
Just save data on the hard drive. Fstream should help.
Unusual but quick solution:
In Posix You can fork(). Second process makes all jobs and exits. First process waits for the second and continue self execution after the second exited.
Last edited on
Topic archived. No new replies allowed.