Diff for /rpl/src/instructions_m4.c between versions 1.40 and 1.43

version 1.40, 2012/03/01 10:14:06 version 1.43, 2012/05/21 17:25:44
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.7    RPL/2 (R) version 4.1.9
   Copyright (C) 1989-2012 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 610  instruction_mtxtrylock(struct_processus Line 610  instruction_mtxtrylock(struct_processus
                 return;                  return;
             }              }
         }          }
           else
         (*((struct_mutex *) (*s_objet_argument).objet)).tid = pthread_self();          {
               (*((struct_mutex *) (*s_objet_argument).objet)).tid =
                       pthread_self();
           }
   
         if ((*s_etat_processus).profilage == d_vrai)          if ((*s_etat_processus).profilage == d_vrai)
         {          {
Line 635  instruction_mtxtrylock(struct_processus Line 638  instruction_mtxtrylock(struct_processus
         return;          return;
     }      }
   
     (*((integer8 *) (*s_objet_resultat).objet)) = (ios == 0) ? 0 : -1;      (*((integer8 *) (*s_objet_resultat).objet)) = (ios == 0) ? -1 : 0;
   
     if (empilement(s_etat_processus, &((*s_etat_processus).l_base_pile),      if (empilement(s_etat_processus, &((*s_etat_processus).l_base_pile),
             s_objet_resultat) == d_erreur)              s_objet_resultat) == d_erreur)

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


CVSweb interface <joel.bertrand@systella.fr>