Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a TODO file with my ideas to make splay work.
[simgrid.git] / examples / msg / trace / test_trace_integration.c
index 067cd73..9556b41 100644 (file)
@@ -1,3 +1,9 @@
+/* Copyright (c) 2009, 2010. The SimGrid Team.
+ * All rights reserved.                                                     */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include "msg/msg.h"
@@ -12,31 +18,33 @@ int test_trace(int argc, char *argv[]);
 /** test the trace integration cpu model */
 int test_trace(int argc, char *argv[])
 {
-       m_task_t task;
-       double task_comp_size = 2800;
-       double task_prio = 1.0;
+  m_task_t task;
+  double task_comp_size = 2800;
+  double task_prio = 1.0;
 
-       if (argc != 3) {
-               printf("Wrong number of arguments!\nUsage:\n\t1) task computational size in FLOPS\n\t2 task priority\n");
-           exit(1);
-       }
+  if (argc != 3) {
+    printf
+        ("Wrong number of arguments!\nUsage:\n\t1) task computational size in FLOPS\n\t2 task priority\n");
+    exit(1);
+  }
 
-       task_comp_size = atof(argv[1]);
-       task_prio = atof(argv[2]);
+  task_comp_size = atof(argv[1]);
+  task_prio = atof(argv[2]);
 
-       INFO0("Testing the trace integration cpu model: CpuTI");
-       INFO1("Task size: %lf", task_comp_size);
-       INFO1("Task prio: %lf", task_prio);
+  XBT_INFO("Testing the trace integration cpu model: CpuTI");
+  XBT_INFO("Task size: %lf", task_comp_size);
+  XBT_INFO("Task prio: %lf", task_prio);
 
-       /* Create and execute a single task. */
-       task = MSG_task_create("proc 0", task_comp_size, 0, NULL);
-       MSG_task_set_priority(task, task_prio);
-       MSG_task_execute(task);
+  /* Create and execute a single task. */
+  task = MSG_task_create("proc 0", task_comp_size, 0, NULL);
+  MSG_task_set_priority(task, task_prio);
+  MSG_task_execute(task);
+  MSG_task_destroy(task);
 
-       INFO0("Test finished");
+  XBT_INFO("Test finished");
 
 
-       return 0;
+  return 0;
 }
 
 /** Main function */