| 60 | } |
| 61 | |
| 62 | static void InitFastRandomSeedAtFork() { |
| 63 | pthread_atfork(ResetFastRandomSeed, ResetFastRandomSeed, ResetFastRandomSeed); |
| 64 | } |
| 65 | |
| 66 | static void InitFastRandomSeed() { |
| 67 | static pthread_once_t once = PTHREAD_ONCE_INIT; |
nothing calls this directly
no outgoing calls
no test coverage detected