Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Works both in RL and SG. Those processes are as stupid as lemmings. They we blocking...
[simgrid.git] / examples / gras / timer / timer.c
index 45cd18b..4f6b7e6 100644 (file)
@@ -51,11 +51,9 @@ static void delayed_action(void) {
 } /* end_of_delayed_action */
 
 int client(int argc,char *argv[]) {
-  xbt_error_t errcode;
-  int cpt;
   my_globals *globals;
 
-  gras_init(&argc,argv,NULL);
+  gras_init(&argc,argv);
   globals=gras_userdata_new(my_globals);
   globals->still_to_do = -1;
 
@@ -66,7 +64,7 @@ int client(int argc,char *argv[]) {
   gras_timer_delay(REPEAT_INTERVAL,delayed_action);
 
   INFO1("[%.0f] Have a rest", gras_os_time());  
-  gras_os_sleep(DELAY_INTERVAL / 2.0, 0);
+  gras_os_sleep(DELAY_INTERVAL / 2.0);
    
   INFO1("[%.0f] Canceling the delayed_action.",gras_os_time());
   gras_timer_cancel_delay(REPEAT_INTERVAL,delayed_action);