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

version 1.67, 2013/04/01 15:29:37 version 1.82, 2016/03/09 10:57:41
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.14    RPL/2 (R) version 4.1.25
   Copyright (C) 1989-2013 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.67  
changed lines
  Added in v.1.82


CVSweb interface <joel.bertrand@systella.fr>