X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/983ca84f3ac2d74ba56145026d89bd11f3f096e5..8b0ff1210013395dca41357e553888693f4f6816:/include/simgrid/s4u/process.hpp diff --git a/include/simgrid/s4u/process.hpp b/include/simgrid/s4u/process.hpp index db9f76c681..b8a9fb16f7 100644 --- a/include/simgrid/s4u/process.hpp +++ b/include/simgrid/s4u/process.hpp @@ -12,7 +12,7 @@ namespace simgrid { namespace s4u { class Host; -class Channel; +class Mailbox; /** @brief Simulation Agent * @@ -85,10 +85,10 @@ public: //void* recv(const char *mailbox); /** Block the process until it gets a string message (to be freed after use) from the given mailbox */ - char *recvstr(Channel &chan); + char *recvstr(Mailbox &chan); /** Block the process until it delivers a string message (that will be copied) to the given mailbox */ - void sendstr(Channel &chan, const char*msg); + void sendstr(Mailbox &chan, const char*msg); protected: smx_process_t getInferior() {return p_smx_process;}