Diff for /rpl/src/instructions_s8.c between versions 1.40 and 1.49

version 1.40, 2011/11/18 21:03:24 version 1.49, 2012/08/22 10:47:17
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.4    RPL/2 (R) version 4.1.10
   Copyright (C) 1989-2011 Dr. BERTRAND Joël    Copyright (C) 1989-2012 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 375  instruction_send(struct_processus *s_eta Line 375  instruction_send(struct_processus *s_eta
             }              }
         }          }
   
         tid = -3;          tid = (pthread_t) -3;
   
         attente.tv_sec = 0;          attente.tv_sec = 0;
         attente.tv_nsec = GRANULARITE_us * 1000;          attente.tv_nsec = GRANULARITE_us * 1000;
Line 627  instruction_send(struct_processus *s_eta Line 627  instruction_send(struct_processus *s_eta
     }      }
     else      else
     {      {
         tid = -1;          tid = (pthread_t) -1;
   
         attente.tv_sec = 0;          attente.tv_sec = 0;
         attente.tv_nsec = GRANULARITE_us * 1000;          attente.tv_nsec = GRANULARITE_us * 1000;
Line 885  instruction_sqlquery(struct_processus *s Line 885  instruction_sqlquery(struct_processus *s
             return;              return;
         }          }
   
           if ((*s_etat_processus).erreur_execution ==
                   d_ex_instruction_indisponible)
           {
               liberation(s_etat_processus, s_objet_1);
               liberation(s_etat_processus, s_objet_2);
               liberation(s_etat_processus, s_copie_1);
   
               return;
           }
   
         liberation(s_etat_processus, s_copie_1);          liberation(s_etat_processus, s_copie_1);
     }      }
     else      else

Removed from v.1.40  
changed lines
  Added in v.1.49


CVSweb interface <joel.bertrand@systella.fr>