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 63a43d1..36ed639 100644 (file)
@@ -482,15 +482,3 @@ int __MSG_process_isBlocked(m_process_t process)
 
   return (process->simdata->blocked);
 }
-
-
-const char* xbt_procname(void) {
-  char *res = NULL;
-  m_process_t process = MSG_process_self();
-  if ((process != NULL) && (process->simdata))
-    res = (char *)MSG_process_get_name(process);
-  if (res) 
-    return (const char*)res;
-  else
-    return "";
-}