Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SIMIX] Fix comment grammar
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Tue, 16 Jan 2018 12:11:55 +0000 (13:11 +0100)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Wed, 17 Jan 2018 18:29:13 +0000 (19:29 +0100)
src/simix/ActorImpl.cpp

index f04292c..94dfdaf 100644 (file)
@@ -351,7 +351,7 @@ smx_actor_t SIMIX_process_create(const char* name, std::function<void()> code, v
   if (host->extension<simgrid::simix::Host>() == nullptr)
     host->extension_set<simgrid::simix::Host>(new simgrid::simix::Host());
 
-  /* Add the process to its host process list */
+  /* Add the process to its host's process list */
   host->extension<simgrid::simix::Host>()->process_list.push_back(*process);
 
   XBT_DEBUG("Start context '%s'", process->name.c_str());