X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ed26e84f533a3dc510abdc384aee02506ab9798b..e8dc5e750d5c843324eabea82bc50a1037912ec6:/src/msg/msg_process.cpp diff --git a/src/msg/msg_process.cpp b/src/msg/msg_process.cpp index d0b03bf30f..eda8149313 100644 --- a/src/msg/msg_process.cpp +++ b/src/msg/msg_process.cpp @@ -4,7 +4,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "msg_private.h" -#include "simgrid/s4u/host.hpp" +#include "simgrid/s4u/Host.hpp" #include "src/simix/ActorImpl.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_process, msg, "Logging specific to MSG (process)"); @@ -22,8 +22,8 @@ SG_BEGIN_DECL() /******************************** Process ************************************/ /** - * \brief Cleans the MSG data of a process. - * \param smx_proc a SIMIX process + * \brief Cleans the MSG data of an actor + * \param smx_actor a SIMIX actor */ void MSG_process_cleanup_from_SIMIX(smx_actor_t smx_actor) { @@ -140,7 +140,7 @@ msg_process_t MSG_process_create_from_stdfunc(const char* name, std::functioncname(), properties, nullptr); - if (!process) + if (not process) xbt_die("Could not attach"); simcall_process_on_exit(process,(int_f_pvoid_pvoid_t)TRACE_msg_process_kill,process); return process->ciface();