Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
seek and destroy empty directories (using svn for that, git-svn is not sufficient...
[simgrid.git] / win32_testsuite / borland / builder6 / simulation / surf / trace_usage / trace_usage.c
diff --git a/win32_testsuite/borland/builder6/simulation/surf/trace_usage/trace_usage.c b/win32_testsuite/borland/builder6/simulation/surf/trace_usage/trace_usage.c
deleted file mode 100644 (file)
index ec09345..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-//---------------------------------------------------------------------------
-
-#pragma hdrstop
-
-//---------------------------------------------------------------------------
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include "surf/trace_mgr.h"
-#include "surf/surf.h"
-
-#include "xbt/log.h"
-XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test,
-                             "Messages specific for surf example");
-
-void test(void);
-void test(void)
-{
-  tmgr_history_t history = tmgr_history_new();
-  tmgr_trace_t trace_A = tmgr_trace_new("trace_A.txt");
-  tmgr_trace_t trace_B = tmgr_trace_new("trace_B.txt");
-  double next_event_date = -1.0;
-  double value = -1.0;
-  char *resource = NULL;
-  char *host_A = strdup("Host A");
-  char *host_B = strdup("Host B");
-
-  tmgr_history_add_trace(history, trace_A, 1.0, 2, host_A);
-  tmgr_history_add_trace(history, trace_B, 0.0, 0, host_B);
-
-  while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
-    DEBUG1("%g" " : \n", next_event_date);
-    while (tmgr_history_get_next_event_leq
-           (history, next_event_date, &value, (void **) &resource)) {
-      DEBUG2("\t %s : " "%g" "\n", resource, value);
-    }
-
-    if (next_event_date > 1000)
-      break;
-  }
-
-  tmgr_history_free(history);
-  free(host_B);
-  free(host_A);
-}
-
-
-#pragma argsused
-int main(int argc, char *argv[])
-{
-  surf_init(&argc, argv);
-  test();
-  surf_exit();
-
-  return 0;
-}
-
-//---------------------------------------------------------------------------