From 6f4dab453c997cfd6cb3cdff2c69a512370b11e8 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Mon, 31 Dec 2018 01:32:55 +0100 Subject: [PATCH] emission does not seem to be the correct word here --- include/simgrid/s4u/Mailbox.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/simgrid/s4u/Mailbox.hpp b/include/simgrid/s4u/Mailbox.hpp index 6f595450c2..21e16e2ebf 100644 --- a/include/simgrid/s4u/Mailbox.hpp +++ b/include/simgrid/s4u/Mailbox.hpp @@ -75,16 +75,16 @@ public: /** Return the actor declared as permanent receiver, or nullptr if none **/ ActorPtr get_receiver(); - /** Creates (but don't start) a data emission to that mailbox */ + /** Creates (but don't start) a data transmission to that mailbox */ CommPtr put_init(); - /** Creates (but don't start) a data emission to that mailbox */ + /** Creates (but don't start) a data transmission to that mailbox */ CommPtr put_init(void* data, uint64_t simulated_size_in_bytes); - /** Creates and start a data emission to that mailbox */ + /** Creates and start a data transmission to that mailbox */ CommPtr put_async(void* data, uint64_t simulated_size_in_bytes); - /** Blocking data emission */ + /** Blocking data transmission */ void put(void* payload, uint64_t simulated_size_in_bytes); - /** Blocking data emission with timeout */ + /** Blocking data transmission with timeout */ void put(void* payload, uint64_t simulated_size_in_bytes, double timeout); /** Creates (but don't start) a data reception onto that mailbox */ -- 2.20.1