From: Arnaud Giersch Date: Mon, 30 Oct 2017 10:18:32 +0000 (+0100) Subject: Typos. X-Git-Tag: v3.18~345 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/79e0b0c0ee496d73ab16d98eb8b62acceec3cb15 Typos. --- diff --git a/src/include/xbt/parmap.hpp b/src/include/xbt/parmap.hpp index 77d13e0b88..35a7e069c9 100644 --- a/src/include/xbt/parmap.hpp +++ b/src/include/xbt/parmap.hpp @@ -209,7 +209,7 @@ template void Parmap::apply(void (*fun)(T), const std::vector this->fun = fun; this->data = &data; this->index = 0; - this->synchro->master_signal(); // maestro runs futex_wait to wake all the minions (the working threads) + this->synchro->master_signal(); // maestro runs futex_wake to wake all the minions (the working threads) this->work(); // maestro works with its minions this->synchro->master_wait(); // When there is no more work to do, then maestro waits for the last minion to stop XBT_CDEBUG(xbt_parmap, "Job done"); // ... and proceeds @@ -266,7 +266,7 @@ template typename Parmap::Synchro* Parmap::new_synchro(e_xbt_ #if HAVE_FUTEX_H res = new FutexSynchro(*this); #else - xbt_die("Fute is not available on this OS."); + xbt_die("Futex is not available on this OS."); #endif break; case XBT_PARMAP_BUSY_WAIT: