qpcpp/doxygen/snippets/qk_mux.cpp
MMS 34cdcc7929 7.0.0rc1
major release 7.0.0 release candidate 1
2022-04-19 19:23:30 -04:00

19 lines
574 B
C++

static QMutex l_rndMutex; // mutex to protect the random number generator
void BSP::randomSeed(uint32_t seed) {
l_rndMutex.init(N_PHILO + 1U); // <--- initialize the mutex
l_rnd = seed;
}
uint32_t BSP::random(void) { // a very cheap pseudo-random-number generator
uint32_t rnd;
l_rndMutex.lock(); // <--- lock the shared random seed
// "Super-Duper" Linear Congruential Generator (LCG)
rnd = l_rnd * (3U*7U*11U*13U*23U);
l_rnd = rnd; // set for the next time
l_rndMutex.unlock(); // <--- unlock the shared random seed
return rnd;
}