Diff for /rpl/src/instructions_v1.c between versions 1.52 and 1.53

version 1.52, 2013/03/24 13:42:44 version 1.53, 2013/03/24 22:06:10
Line 1023  instruction_vars(struct_processus *s_eta Line 1023  instruction_vars(struct_processus *s_eta
     (*s_objet_resultat).objet = NULL;      (*s_objet_resultat).objet = NULL;
     l_element_precedent = NULL;      l_element_precedent = NULL;
   
     if (pthread_mutex_lock(&mutex_liste_variables_partagees) != 0)  
     {  
         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;  
         return;  
     }  
   
     nb_variables = nombre_variables(s_etat_processus);      nb_variables = nombre_variables(s_etat_processus);
   
     if ((tableau = malloc(((size_t) nb_variables) *      if ((tableau = malloc(((size_t) nb_variables) *
Line 1036  instruction_vars(struct_processus *s_eta Line 1030  instruction_vars(struct_processus *s_eta
     {      {
         liberation_mutexes_arbre_variables_partagees(s_etat_processus,          liberation_mutexes_arbre_variables_partagees(s_etat_processus,
                 (*(*s_etat_processus).s_arbre_variables_partagees));                  (*(*s_etat_processus).s_arbre_variables_partagees));
         pthread_mutex_unlock(&mutex_liste_variables_partagees);  
         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;          (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
         return;          return;
     }      }
   
     nb_variables = liste_variables(s_etat_processus, tableau);      nb_variables = liste_variables(s_etat_processus, tableau);
   
     if (pthread_mutex_unlock(&mutex_liste_variables_partagees) != 0)  
     {  
         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;  
         return;  
     }  
   
     for(i = 0; i < nb_variables; i++)      for(i = 0; i < nb_variables; i++)
     {      {
         if (l_element_precedent == NULL)          if (l_element_precedent == NULL)

Removed from v.1.52  
changed lines
  Added in v.1.53


CVSweb interface <joel.bertrand@systella.fr>