Diff for /rpl/src/instructions_u1.c between versions 1.5 and 1.6

version 1.5, 2010/03/04 17:42:46 version 1.6, 2010/03/06 18:29:07
Line 1077  instruction_uchol(struct_processus *s_et Line 1077  instruction_uchol(struct_processus *s_et
 void  void
 instruction_unlock(struct_processus *s_etat_processus)  instruction_unlock(struct_processus *s_etat_processus)
 {  {
     file                        *descripteur;  
   
     struct flock                lock;      struct flock                lock;
   
       struct_descripteur_fichier  *descripteur;
   
     struct_objet                *s_objet;      struct_objet                *s_objet;
   
     (*s_etat_processus).erreur_execution = d_ex;      (*s_etat_processus).erreur_execution = d_ex;
Line 1137  instruction_unlock(struct_processus *s_e Line 1137  instruction_unlock(struct_processus *s_e
             return;              return;
         }          }
   
         if (fcntl(fileno(descripteur), F_SETLK, &lock) == -1)          if (fcntl(fileno((*descripteur).descripteur_c), F_SETLK, &lock)
                   == -1)
         {          {
             liberation(s_etat_processus, s_objet);              liberation(s_etat_processus, s_objet);
   

Removed from v.1.5  
changed lines
  Added in v.1.6


CVSweb interface <joel.bertrand@systella.fr>