Diff for /rpl/src/analyse.c between versions 1.61 and 1.62

version 1.61, 2011/10/14 08:13:05 version 1.62, 2011/10/21 11:38:38
Line 1213  analyse(struct_processus *s_etat_process Line 1213  analyse(struct_processus *s_etat_process
                     temporisation.tv_nsec = (attente - temporisation.tv_sec) *                      temporisation.tv_nsec = (attente - temporisation.tv_sec) *
                             1E9;                              1E9;
   
                     while(nanosleep(&temporisation, &temporisation) == -1);                      while(nanosleep(&temporisation, &temporisation) == -1)
                       {
                           if (errno != EINTR)
                           {
                               break;
                           }
                       }
                 }                  }
   
                 horodatage_initial = horodatage_final;                  horodatage_initial = horodatage_final;

Removed from v.1.61  
changed lines
  Added in v.1.62


CVSweb interface <joel.bertrand@systella.fr>