Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanup in teshsuite/msg
[simgrid.git] / teshsuite / msg / trace / test_trace_integration.c
index d0f52cf..c39732a 100644 (file)
@@ -4,21 +4,13 @@
 /* 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. */
 
 /* 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 "simgrid/msg.h"
 #include "simgrid/msg.h"
-#include "xbt/log.h"
-#include "xbt/asserts.h"
 
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(test_trace_integration,
-                             "Messages specific for this msg example");
-
-int test_trace(int argc, char *argv[]);
+XBT_LOG_NEW_DEFAULT_CATEGORY(test_trace_integration, "Messages specific for this msg example");
 
 /** test the trace integration cpu model */
 
 /** test the trace integration cpu model */
-int test_trace(int argc, char *argv[])
+static int test_trace(int argc, char *argv[])
 {
 {
-  msg_task_t task;
   double task_comp_size = 2800;
   double task_prio = 1.0;
 
   double task_comp_size = 2800;
   double task_prio = 1.0;
 
@@ -32,7 +24,7 @@ int test_trace(int argc, char *argv[])
   XBT_INFO("Task prio: %f", task_prio);
 
   /* Create and execute a single task. */
   XBT_INFO("Task prio: %f", task_prio);
 
   /* Create and execute a single task. */
-  task = MSG_task_create("proc 0", task_comp_size, 0, NULL);
+  msg_task_t 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);
   MSG_task_set_priority(task, task_prio);
   MSG_task_execute(task);
   MSG_task_destroy(task);
@@ -42,21 +34,17 @@ int test_trace(int argc, char *argv[])
   return 0;
 }
 
   return 0;
 }
 
-/** Main function */
 int main(int argc, char *argv[])
 {
   msg_error_t res = MSG_OK;
 
 int main(int argc, char *argv[])
 {
   msg_error_t res = MSG_OK;
 
-  /* Verify if the platform xml file was passed by command line. */
   MSG_init(&argc, argv);
   xbt_assert(argc > 2, "Usage: %s test_trace_integration_model.xml deployment.xml\n", argv[0]);
 
   MSG_init(&argc, argv);
   xbt_assert(argc > 2, "Usage: %s test_trace_integration_model.xml deployment.xml\n", argv[0]);
 
-  /* Register SimGrid process function. */
   MSG_function_register("test_trace", test_trace);
   MSG_function_register("test_trace", test_trace);
-  /* Use the same file for platform and deployment. */
   MSG_create_environment(argv[1]);
   MSG_launch_application(argv[2]);
   MSG_create_environment(argv[1]);
   MSG_launch_application(argv[2]);
-  /* Run the example. */
+
   res = MSG_main();
 
   return res != MSG_OK;
   res = MSG_main();
 
   return res != MSG_OK;