Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
keep_track should be set only when lmm_solve is called from network_im
[simgrid.git] / include / gras / timer.h
index a05fc1a..fa6e7c0 100644 (file)
@@ -1,9 +1,8 @@
-/* $Id$ */
-
 /* timer - delayed and repetitive tasks                                     */
 /* module's public interface exported to end user.                          */
 
-/* Copyright (c) 2005 Martin Quinson. All rights reserved.                  */
+/* Copyright (c) 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
+ * All rights reserved.                                                     */
 
 /* 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. */
@@ -36,22 +35,20 @@ SG_BEGIN_DECL()
  * 
  *  @{
  */
+XBT_PUBLIC(void) gras_timer_delay(double delay, void_f_void_t action);
+XBT_PUBLIC(void) gras_timer_repeat(double interval, void_f_void_t action);
 
-  typedef void (*void_f_void_t)(void);
-
-  void gras_timer_delay(double delay, void_f_void_t action);
-  void gras_timer_repeat(double interval, void_f_void_t action);
+XBT_PUBLIC(void) gras_timer_cancel_delay(double interval,
+                                         void_f_void_t action);
+XBT_PUBLIC(void) 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_PUBLIC(void) gras_timer_cancel_delay_all(void);
+XBT_PUBLIC(void) 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);
+XBT_PUBLIC(void) gras_timer_cancel_all(void);
 
 /** @} */
 
 SG_END_DECL()
-
-#endif /* GRAS_TIMER_H */
+#endif                          /* GRAS_TIMER_H */