Diff for /rpl/src/rpl.h between versions 1.85 and 1.89

version 1.85, 2011/04/21 16:01:00 version 1.89, 2011/06/17 07:55:59
Line 1680  typedef struct rpl_arguments Line 1680  typedef struct rpl_arguments
 #ifndef RPLARGS  #ifndef RPLARGS
 typedef struct instruction  typedef struct instruction
 {  {
     struct instruction      **noeud;      struct instruction      **noeuds;
     void                    (*feuille)(struct processus *);      void                    (*feuille)(struct processus *);
 } struct_instruction;  } struct_instruction;
 #endif  #endif
Line 1695  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;      signed int              indice_tableau_pere;
       struct arbre_variables  *noeud_pere;
       struct arbre_variables  **noeuds;
     struct liste_variables  *feuille;      struct liste_variables  *feuille;
 } struct_arbre_variables;  } struct_arbre_variables;
   
Line 1703  typedef struct liste_variables Line 1705  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;
Line 3111  logical1 ecriture_pipe(struct_processus Line 3116  logical1 ecriture_pipe(struct_processus
         struct_objet *s_objet);          struct_objet *s_objet);
 logical1 recherche_variable(struct_processus *s_etat_processus,  logical1 recherche_variable(struct_processus *s_etat_processus,
         unsigned char *nom_variable);          unsigned char *nom_variable);
   logical1 recherche_variable_globale(struct_processus *s_etat_processus,
           unsigned char *nom_variable);
 logical1 recherche_variable_partagee(struct_processus *s_etat_processus,  logical1 recherche_variable_partagee(struct_processus *s_etat_processus,
         unsigned char *nom_variable, union_position_variable position,          unsigned char *nom_variable, union_position_variable position,
         unsigned char origine);          unsigned char origine);

Removed from v.1.85  
changed lines
  Added in v.1.89


CVSweb interface <joel.bertrand@systella.fr>