Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Moving functions to the right location and making them work.
[simgrid.git] / src / msg / m_process.c
index d3eb7f9..36ed639 100644 (file)
@@ -482,12 +482,3 @@ int __MSG_process_isBlocked(m_process_t process)
 
   return (process->simdata->blocked);
 }
-
-
-const char* xbt_procname(void) {
-  m_process_t process = MSG_process_self();
-  if ((process != NULL) && (process->simdata))
-    return MSG_process_get_name(process);
-  else
-    return "";
-}