Diff for /rpl/src/instructions_s1.c between versions 1.73 and 1.82

version 1.73, 2014/07/17 08:07:24 version 1.82, 2016/03/09 10:57:41
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.19    RPL/2 (R) version 4.1.25
   Copyright (C) 1989-2014 Dr. BERTRAND Joël    Copyright (C) 1989-2016 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 3690  instruction_syseval(struct_processus *s_ Line 3690  instruction_syseval(struct_processus *s_
   
         verrouillage_threads_concurrents(s_etat_processus);          verrouillage_threads_concurrents(s_etat_processus);
         pid = fork();          pid = fork();
         deverrouillage_threads_concurrents(s_etat_processus);  
           if (pid > 0)
           {
               deverrouillage_threads_concurrents(s_etat_processus);
           }
   
         if (pid < 0)          if (pid < 0)
         {          {

Removed from v.1.73  
changed lines
  Added in v.1.82


CVSweb interface <joel.bertrand@systella.fr>