Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Deprecate MSG_clean
[simgrid.git] / examples / msg / tracing / simple.c
index 5842689..25050e7 100644 (file)
@@ -29,7 +29,7 @@ int simple_func(int argc, char *argv[]);
 /** Emitter function  */
 int simple_func(int argc, char *argv[])
 {
-  m_task_t task = MSG_task_create("task", 100, 0, NULL);
+  msg_task_t task = MSG_task_create("task", 100, 0, NULL);
   MSG_task_execute (task);
   MSG_task_destroy (task);
   return 0;
@@ -53,6 +53,5 @@ int main(int argc, char *argv[])
   MSG_launch_application(deployment_file);
 
   MSG_main();
-  MSG_clean();
   return 0;
 }