Diff for /rpl/src/rpl.h between versions 1.84 and 1.88

version 1.84, 2011/04/20 08:26:04 version 1.88, 2011/06/11 09:36:31
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;      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 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;
Line 3111  logical1 ecriture_pipe(struct_processus Line 3115  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.84  
changed lines
  Added in v.1.88


CVSweb interface <joel.bertrand@systella.fr>