Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
no need to set tracing/buffer to its default value
[simgrid.git] / src / msg / msg_process.cpp
index bbadeab..581d75c 100644 (file)
@@ -40,7 +40,7 @@ void MSG_process_cleanup_from_SIMIX(smx_actor_t smx_actor)
   }
 
   if (TRACE_actor_is_enabled())
-    simgrid::instr::Container::byName(instr_pid(smx_actor->ciface()))->removeFromParent();
+    simgrid::instr::Container::by_name(instr_pid(smx_actor->ciface()))->remove_from_parent();
 
   // free the data if a function was provided
   if (msg_actor && msg_actor->data && msg_global->process_data_cleanup) {
@@ -196,12 +196,6 @@ void MSG_process_detach()
   SIMIX_process_detach();
 }
 
-/** Yield the current actor; let the other actors execute first */
-void MSG_process_yield()
-{
-  simgrid::simix::kernelImmediate([] { /* do nothing*/ });
-}
-
 /** \ingroup m_process_management
  * \brief Returns the user data of a process.
  *