| 92 | } |
| 93 | |
| 94 | void OnChild() |
| 95 | { |
| 96 | ForkLock_.ReleaseWriter(); |
| 97 | IterateAtForkHandlerSets([] (const TAtForkHandlerSet& set) { |
| 98 | if (set.Child) { |
| 99 | set.Child(); |
| 100 | } |
| 101 | }); |
| 102 | } |
| 103 | |
| 104 | template <class F> |
| 105 | void IterateAtForkHandlerSets(F func) |
no test coverage detected