Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] removing unused code
[simgrid.git] / src / instr / general.c
index 85c7d52..fd65abe 100644 (file)
@@ -9,39 +9,6 @@
 
 #ifdef HAVE_TRACING
 
-char *TRACE_paje_msg_container(m_task_t task, char *host, char *output,
-                               int len)
-{
-  if (output) {
-    snprintf(output, len, "msg-%p-%s-%lld", task, host, task->counter);
-    return output;
-  } else {
-    return NULL;
-  }
-}
-
-char *TRACE_paje_smx_container(smx_action_t action, int seqnumber,
-                               char *host, char *output, int len)
-{
-  if (output) {
-    snprintf(output, len, "smx-%p-%d", action, seqnumber);
-    return output;
-  } else {
-    return NULL;
-  }
-}
-
-char *TRACE_paje_surf_container(void *action, int seqnumber, char *output,
-                                int len)
-{
-  if (output) {
-    snprintf(output, len, "surf-%p-%d", action, seqnumber);
-    return output;
-  } else {
-    return NULL;
-  }
-}
-
 char *TRACE_host_container(m_host_t host, char *output, int len)
 {
   if (output) {