Diff for /rpl/src/gestion_threads.c between versions 1.25 and 1.30

version 1.25, 2010/07/31 10:34:17 version 1.30, 2010/09/23 15:27:36
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.18    RPL/2 (R) version 4.0.20
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2010 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
Line 20 Line 20
 */  */
   
   
 #include "rpl.conv.h"  #include "rpl-conv.h"
   
   
 /*  /*
Line 1081  lancement_thread(void *argument) Line 1081  lancement_thread(void *argument)
     pthread_mutex_destroy(&((*s_etat_processus).mutex));      pthread_mutex_destroy(&((*s_etat_processus).mutex));
     pthread_mutex_destroy(&((*s_etat_processus).mutex_allocation));      pthread_mutex_destroy(&((*s_etat_processus).mutex_allocation));
   
       sem_destroy(&((*s_etat_processus).semaphore_fork));
   
     free((*s_etat_processus).localisation);      free((*s_etat_processus).localisation);
     free(s_etat_processus);      free(s_etat_processus);
   
Line 1089  lancement_thread(void *argument) Line 1091  lancement_thread(void *argument)
   
     (*s_argument_thread).thread_actif = d_faux;      (*s_argument_thread).thread_actif = d_faux;
     pthread_exit(NULL);      pthread_exit(NULL);
       return(NULL);
 }  }
   
 // vim: ts=4  // vim: ts=4

Removed from v.1.25  
changed lines
  Added in v.1.30


CVSweb interface <joel.bertrand@systella.fr>