Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Completely remove channel mecanism with tesh tested examples.
[simgrid.git] / examples / msg / priority / priority.c
index e5b6c62..e4686cb 100644 (file)
@@ -20,10 +20,10 @@ static int test(int argc, char *argv[])
   double priority = 1.0;
   m_task_t task = NULL;
 
-  int res = sscanf(argv[1], "%lg", &computation_amount);
-  xbt_assert1(res, "Invalid argument %s\n", argv[1]);
+  _XBT_GNUC_UNUSED int res = sscanf(argv[1], "%lg", &computation_amount);
+  xbt_assert(res, "Invalid argument %s\n", argv[1]);
   res = sscanf(argv[2], "%lg", &priority);
-  xbt_assert1(res, "Invalid argument %s\n", argv[2]);
+  xbt_assert(res, "Invalid argument %s\n", argv[2]);
 
   XBT_INFO("Hello! Running a task of size %g with priority %g",
         computation_amount, priority);
@@ -43,7 +43,6 @@ static MSG_error_t test_all(const char *platform_file,
   MSG_error_t res = MSG_OK;
 
   {                             /*  Simulation setting */
-    MSG_set_channel_number(1);
     MSG_create_environment(platform_file);
   }
   {                             /*   Application deployment */