Search found 1 match
- Fri Aug 09, 2024 2:58 pm
- Forum: Pending
- Topic: [raiguard][1.1.91][linux] "stopped responding" when saving bar was full. (non-blocking save)
- Replies: 30
- Views: 13186
Re: [raiguard][1.1.91][linux] "stopped responding" when saving bar was full. (non-blocking save)
The core method (of using fork() to get a separate process with the same memory map and then doing the save in that process) is pretty risky. You need to make sure that no locks are held by any thread other than the one calling fork() at the time of the fork. This include locks buried in library cod...