Fixed a few typos

This commit is contained in:
Benoit Steiner 2016-04-19 15:27:09 -07:00
parent 5b1106c56b
commit 04f954956d
2 changed files with 5 additions and 5 deletions

View File

@ -16,12 +16,12 @@
// implementation of rand() is already thread safe
int rand_reentrant(unsigned int* s) {
#ifdef EIGEN_COMP_MSVC_STRICT
EIGEN_UNUSED_VARIABLE(s);
return rand();
#else
return rand_r(s);
endif
}
#endif
}
static void test_basic_eventcount()
{
@ -106,7 +106,7 @@ static void test_stress_eventcount()
consumers.emplace_back(new std::thread([&ec, &queues, &waiters, i]() {
EventCount::Waiter& w = waiters[i];
unsigned int rnd = static_cast<unsigned int>(std::hash<std::thread::id>()(std::this_thread::get_id()));
for (int j = 0; j < kEvents; k++) {
for (int j = 0; j < kEvents; j++) {
unsigned idx = rand_reentrant(&rnd) % kQueues;
if (queues[idx].Pop()) continue;
j--;

View File

@ -18,12 +18,12 @@
// implementation of rand() is already thread safe
int rand_reentrant(unsigned int* s) {
#ifdef EIGEN_COMP_MSVC_STRICT
EIGEN_UNUSED_VARIABLE(s);
return rand();
#else
return rand_r(s);
endif
}
#endif
}
void test_basic_runqueue()
{