Diff for /rpl/src/rpl.h between versions 1.83 and 1.86

version 1.83, 2011/04/19 07:31:33 version 1.86, 2011/06/08 13:35:15
Line 922  pid_t debug_fork(); Line 922  pid_t debug_fork();
 #   define d_ex_clef_inexistante                __erreur(80)  #   define d_ex_clef_inexistante                __erreur(80)
 #   define d_ex_nom_implicite                   __erreur(81)  #   define d_ex_nom_implicite                   __erreur(81)
 #   define d_ex_version_bibliotheque            __erreur(82)  #   define d_ex_version_bibliotheque            __erreur(82)
   #   define d_ex_creation_variable_globale       __erreur(83)
 #endif  #endif
   
   
Line 1694  typedef struct instruction Line 1695  typedef struct instruction
 typedef struct arbre_variables  typedef struct arbre_variables
 {  {
     unsigned int            noeuds_utilises;      unsigned int            noeuds_utilises;
     struct arbre_variables  **noeud;      struct arbre_variables  *noeud_pere;
       struct arbre_variables  **noeuds;
     struct liste_variables  *feuille;      struct liste_variables  *feuille;
 } struct_arbre_variables;  } struct_arbre_variables;
   
Line 1702  typedef struct liste_variables Line 1704  typedef struct liste_variables
 {  {
     union      union
     {      {
           // Utilisation dans la gestion des variables
         struct_variable                 *variable;          struct_variable                 *variable;
           // Utilisation dans la pile système (variables par niveau)
         struct_liste_chainee            *liste;          struct_liste_chainee            *liste;
     };      };
   
       struct arbre_variables              *noeud_pere;
     struct liste_variables              *suivant;      struct liste_variables              *suivant;
     struct liste_variables              *precedent;      struct liste_variables              *precedent;
 } struct_liste_variables;  } struct_liste_variables;

Removed from v.1.83  
changed lines
  Added in v.1.86


CVSweb interface <joel.bertrand@systella.fr>