Diff for /rpl/src/instructions_s6.c between versions 1.58 and 1.64

version 1.58, 2016/03/01 22:12:34 version 1.64, 2017/08/03 17:17:49
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.25    RPL/2 (R) version 4.1.28
   Copyright (C) 1989-2016 Dr. BERTRAND Joël    Copyright (C) 1989-2017 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 509  instruction_sync(struct_processus *s_eta Line 509  instruction_sync(struct_processus *s_eta
                     d_ex_erreur_acces_fichier;                      d_ex_erreur_acces_fichier;
             return;              return;
         }          }
   
           if (fsync(fileno((*descripteur).descripteur_c)) != 0)
           {
               if ((errno != EROFS) && (errno != EINVAL))
               {
                   liberation(s_etat_processus, s_objet_argument);
   
                   (*s_etat_processus).erreur_execution =
                           d_ex_erreur_acces_fichier;
                   return;
               }
           }
     }      }
     else      else
     {      {

Removed from v.1.58  
changed lines
  Added in v.1.64


CVSweb interface <joel.bertrand@systella.fr>