Diff for /rpl/src/instructions_s6.c between versions 1.61 and 1.75

version 1.61, 2017/06/21 10:20:14 version 1.75, 2024/01/17 16:57:16
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.26    RPL/2 (R) version 4.1.36
   Copyright (C) 1989-2017 Dr. BERTRAND Joël    Copyright (C) 1989-2024 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 512  instruction_sync(struct_processus *s_eta Line 512  instruction_sync(struct_processus *s_eta
   
         if (fsync(fileno((*descripteur).descripteur_c)) != 0)          if (fsync(fileno((*descripteur).descripteur_c)) != 0)
         {          {
             liberation(s_etat_processus, s_objet_argument);              if ((errno != EROFS) && (errno != EINVAL))
               {
                   liberation(s_etat_processus, s_objet_argument);
   
             (*s_etat_processus).erreur_execution =                  (*s_etat_processus).erreur_execution =
                     d_ex_erreur_acces_fichier;                          d_ex_erreur_acces_fichier;
             return;                  return;
               }
         }          }
     }      }
     else      else

Removed from v.1.61  
changed lines
  Added in v.1.75


CVSweb interface <joel.bertrand@systella.fr>