Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : remove binary name as argument of some functions, available with...
[simgrid.git] / doc / gtut-tour-07-timers.doc
index e8fdcb9..7d45e04 100644 (file)
@@ -5,7 +5,7 @@
  - \ref GRAS_tut_tour_timers_intro
  - \ref GRAS_tut_tour_timers_use
  - \ref GRAS_tut_tour_timers_recap
-   
+
 <hr>
 
 \section GRAS_tut_tour_timers_intro Introduction
@@ -25,7 +25,7 @@ coordinator?
 
 One solution is to have the members re-register periodically, so that the
 coordinator can detect the processes which didn't do so since a while, and
-dismiss them. 
+dismiss them.
 
 To implement this in GRAS, we need some more functions: gras_timer_repeat()
 allows to specify a periodic action and gras_timer_delay() allows to get an
@@ -36,7 +36,7 @@ must be function without argument nor result (<tt>void my_action(void){
 
 It is important to note that timers are not prehemptive. They will not start
 as soon as they are ready. Instead, they get served when you go into
-gras_msg_handle() (and they are served before incomming messages). This is
+gras_msg_handle() (and they are served before incoming messages). This is
 because allowing timers to run in parallel to the callbacks would add
 parallelism to the user code, which would have to protect data with mutexes.
 This is a level of complexity I really don't want for user code. If you