| 64 | } |
| 65 | |
| 66 | static void InitFastRandomSeed() { |
| 67 | static pthread_once_t once = PTHREAD_ONCE_INIT; |
| 68 | pthread_once(&once, InitFastRandomSeedAtFork); |
| 69 | |
| 70 | ResetFastRandomSeed(); |
| 71 | } |
| 72 | |
| 73 | unsigned int GetFastRandom() { |
| 74 | if (!seed_routine_safe.init) { |
no test coverage detected