Diff for /rpl/src/gestion_variables_partagees.c between versions 1.29 and 1.38

version 1.29, 2011/11/26 10:01:27 version 1.38, 2012/12/14 14:19:49
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.5    RPL/2 (R) version 4.1.11
   Copyright (C) 1989-2011 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 39  logical1 Line 39  logical1
 creation_variable_partagee(struct_processus *s_etat_processus,  creation_variable_partagee(struct_processus *s_etat_processus,
         struct_variable_partagee *s_variable)          struct_variable_partagee *s_variable)
 {  {
       BUG(1);
       return(d_absence_erreur);
   }
   
   logical1
   retrait_variable_partagee(struct_processus *s_etat_processus,
           unsigned char *nom_variable, union_position_variable position)
   {
       BUG(1);
       return(d_absence_erreur);
   }
   
   logical1
   retrait_variables_partagees_locales(struct_processus *s_etat_processus)
   {
       BUG(1);
       return(d_absence_erreur);
   }
   
   logical1
   recherche_variable_partagee(struct_processus *s_etat_processus,
           unsigned char *nom_variable, union_position_variable position,
           unsigned char origine)
   {
       BUG(1);
       return(d_faux);
   }
   
   void
   liberation_arbre_variables_partagees(struct_processus *s_etat_processus,
           struct_arbre_variables *arbre)
   {
       return;
   }
   
   #if 0
   logical1
   creation_variable_partagee(struct_processus *s_etat_processus,
           struct_variable_partagee *s_variable)
   {
     struct_variable_partagee            *s_nouvelle_base;      struct_variable_partagee            *s_nouvelle_base;
   
     long                                i;      long                                i;
Line 465  recherche_variable_partagee(struct_proce Line 505  recherche_variable_partagee(struct_proce
   
     return existence_variable;      return existence_variable;
 }  }
   #endif
 // vim: ts=4  // vim: ts=4

Removed from v.1.29  
changed lines
  Added in v.1.38


CVSweb interface <joel.bertrand@systella.fr>