--- rpl/src/interruptions.c 2013/03/15 11:37:26 1.119 +++ rpl/src/interruptions.c 2013/03/21 12:07:38 1.122 @@ -555,7 +555,7 @@ liberation_threads(struct_processus *s_e struct_liste_variables_statiques *l_element_statique_courant; struct_liste_variables_statiques *l_element_statique_suivant; - unsigned long i; + integer8 i; void *element_candidat; void *element_courant; @@ -1739,7 +1739,6 @@ thread_signaux(void *argument) if (signal != (0xFF & rpl_sigmax)) { -uprintf("envoi signal %d vers %d\n", signal, getpid()); envoi_signal_processus(getpid(), signal); // Un signal SIGALRM est envoyé par le thread de surveillance // des signaux jusqu'à ce que les signaux soient tous traités. @@ -2410,8 +2409,9 @@ signal_hup(struct_processus *s_etat_proc return; } - snprintf(nom, 8 + 64 + 1, "rpl-out-%lu-%lu", (unsigned long) getpid(), - (unsigned long) pthread_self()); + snprintf(nom, 8 + 64 + 1, "rpl-out-%llu-%llu", + (unsigned long long) getpid(), + (unsigned long long) pthread_self()); if ((fichier = fopen(nom, "w+")) != NULL) {