summary refs log tree commit diff stats
path: root/results/scraper/fex/1681
blob: 8fd62462a05dac0bc2b722f0da298fb24c8fa92a (plain) (blame)
1
2
3
4
5
6
7
8
std::shared_mutexes can't be safelly locked across forks
I run into this as part of #1558.

If they are locked before fork, then after fork they may or may not lockup on next lock, semi-randomly.

Looks like we need to roll our own `shared_mutex` implementation.

In general in need a gameplan for fork safety of FEXCore / Syscalls code