Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ONGOING work on exceptions plus minor cleanups.
[simgrid.git] / include / gras / timer.h
index 5ac8ce8..8c5e418 100644 (file)
@@ -42,11 +42,11 @@ BEGIN_DECL()
   void gras_timer_delay(double delay, void_f_void_t action);
   void gras_timer_repeat(double interval, void_f_void_t action);
 
-  xbt_error_t gras_timer_cancel_delay(double interval, void_f_void_t action);
-  xbt_error_t gras_timer_cancel_repeat(double interval, void_f_void_t action);
+  void gras_timer_cancel_delay(double interval, void_f_void_t action);
+  void gras_timer_cancel_repeat(double interval, void_f_void_t action);
 
-  xbt_error_t gras_timer_cancel_delay_all(void);
-  xbt_error_t gras_timer_cancel_repeat_all(void);
+  void gras_timer_cancel_delay_all(void);
+  void gras_timer_cancel_repeat_all(void);
 
   void gras_timer_cancel_all(void);