Diff for /rpl/src/instructions_c6.c between versions 1.29 and 1.30

version 1.29, 2011/08/09 11:31:31 version 1.30, 2011/09/14 14:34:28
Line 608  instruction_continue(struct_processus *s Line 608  instruction_continue(struct_processus *s
                             .thread).pid == (*(*((struct_processus_fils *)                              .thread).pid == (*(*((struct_processus_fils *)
                             (*(*l_element_courant).donnee).objet)).thread).pid)                              (*(*l_element_courant).donnee).objet)).thread).pid)
                     {                      {
                         if (kill((*(*((struct_processus_fils *)                          if (envoi_signal_processus(
                                 (*s_objet).objet)).thread).pid, SIGCONT) != 0)                                  (*(*((struct_processus_fils *)
                                   (*s_objet).objet)).thread).pid, rpl_sigcont)
                                   != 0)
                         {                          {
                             // Le processus est peut-être dans l'état zombie.                              // Le processus est peut-être dans l'état zombie.
                         }                          }
Line 639  instruction_continue(struct_processus *s Line 641  instruction_continue(struct_processus *s
                                 (*(*l_element_courant).donnee).objet)).thread)                                  (*(*l_element_courant).donnee).objet)).thread)
                                 .pid))                                  .pid))
                         {                          {
                             if (pthread_kill((*(*((struct_processus_fils *)                              if (envoi_signal_thread(
                                     (*s_objet).objet)).thread).tid, SIGCONT)                                      (*(*((struct_processus_fils *)
                                       (*s_objet).objet)).thread).tid, rpl_sigcont)
                                     != 0)                                      != 0)
                             {                              {
                                 // Le thread est peut-être dans l'état zombie.                                  // Le thread est peut-être dans l'état zombie.

Removed from v.1.29  
changed lines
  Added in v.1.30


CVSweb interface <joel.bertrand@systella.fr>