From: Christian Heinrich Date: Thu, 18 Jan 2018 16:02:05 +0000 (+0100) Subject: [SMPI] Replace Actor::self() with smpi::Process's process_ X-Git-Tag: v3.19~312^2~10 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1ee0614f2928e0df6a9ecdc585200b0f9b81d5d5 [SMPI] Replace Actor::self() with smpi::Process's process_ --- diff --git a/src/smpi/internals/smpi_process.cpp b/src/smpi/internals/smpi_process.cpp index f5d50eaeac..17b38122c3 100644 --- a/src/smpi/internals/smpi_process.cpp +++ b/src/smpi/internals/smpi_process.cpp @@ -75,7 +75,7 @@ void Process::set_data(int* argc, char*** argv) argc_ = argc; argv_ = argv; // set the process attached to the mailbox - mailbox_small_->setReceiver(simgrid::s4u::Actor::self()); + mailbox_small_->setReceiver(process_); XBT_DEBUG("<%lu> New process in the game: %p", process_->getPid(), process_); }