| 289 | } |
| 290 | |
| 291 | long long randInt(long long max) { |
| 292 | MutexLocker locker(g_randMutex); |
| 293 | checkInit(); |
| 294 | return g_randSource->randInt(max); |
| 295 | } |
| 296 | |
| 297 | unsigned long long randUInt(unsigned long long max) { |
| 298 | MutexLocker locker(g_randMutex); |
no test coverage detected