File:  [local] / rpl / src / interruptions.c
Revision 1.30: download - view: text, annotated - select for diffs - revision graph
Tue Aug 17 11:59:28 2010 UTC (13 years, 8 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Ajout du support de DETACH pour les systèmes ayant une structure siginfo
mal renseignée.

    1: /*
    2: ================================================================================
    3:   RPL/2 (R) version 4.0.18
    4:   Copyright (C) 1989-2010 Dr. BERTRAND Joël
    5: 
    6:   This file is part of RPL/2.
    7: 
    8:   RPL/2 is free software; you can redistribute it and/or modify it
    9:   under the terms of the CeCILL V2 License as published by the french
   10:   CEA, CNRS and INRIA.
   11:  
   12:   RPL/2 is distributed in the hope that it will be useful, but WITHOUT
   13:   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   14:   FITNESS FOR A PARTICULAR PURPOSE.  See the CeCILL V2 License
   15:   for more details.
   16:  
   17:   You should have received a copy of the CeCILL License
   18:   along with RPL/2. If not, write to info@cecill.info.
   19: ================================================================================
   20: */
   21: 
   22: 
   23: #include "rpl-conv.h"
   24: 
   25: 
   26: /*
   27: ================================================================================
   28:   Procédures de gestion par thread des variables issues des gestionnaires
   29:   de signaux
   30: ================================================================================
   31:   Entrée : variable globale
   32: --------------------------------------------------------------------------------
   33:   Sortie : variable globale modifiée
   34: --------------------------------------------------------------------------------
   35:   Effets de bord : néant
   36: ================================================================================
   37: */
   38: 
   39: typedef struct thread
   40: {
   41:     pid_t               pid;
   42:     pthread_t           tid;
   43: 
   44:     logical1            thread_principal;
   45: 
   46:     struct_processus    *s_etat_processus;
   47: } struct_thread;
   48: 
   49: typedef struct liste_chainee_volatile
   50: {
   51:     volatile struct liste_chainee_volatile  *suivant;
   52:     volatile void                           *donnee;
   53: } struct_liste_chainee_volatile;
   54: 
   55: 
   56: static volatile struct_liste_chainee_volatile   *liste_threads
   57:         = NULL;
   58: static volatile struct_liste_chainee_volatile   *liste_threads_surveillance
   59:         = NULL;
   60: 
   61: void
   62: modification_pid_thread_pere(struct_processus *s_etat_processus)
   63: {
   64:     // La variable existe toujours et aucun thread concurrent ne peut
   65:     // la modifier puisque cette routine ne peut être appelée que depuis
   66:     // DAEMON.
   67: 
   68:     (*((struct_thread *) (*liste_threads).donnee)).pid =
   69:             (*s_etat_processus).pid_processus_pere;
   70: 
   71:     return;
   72: }
   73: 
   74: void
   75: insertion_thread(struct_processus *s_etat_processus, logical1 thread_principal)
   76: {
   77:     sigset_t                                    oldset;
   78:     sigset_t                                    set;
   79: 
   80:     volatile struct_liste_chainee_volatile      *l_nouvel_objet;
   81: 
   82:     sigfillset(&set);
   83:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
   84: 
   85:     if ((l_nouvel_objet = malloc(sizeof(struct_liste_chainee_volatile)))
   86:             == NULL)
   87:     {
   88:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
   89:         sigpending(&set);
   90: 
   91:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
   92:         return;
   93:     }
   94: 
   95:     if (((*l_nouvel_objet).donnee = malloc(sizeof(struct_thread))) == NULL)
   96:     {
   97:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
   98:         sigpending(&set);
   99: 
  100:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
  101:         return;
  102:     }
  103: 
  104:     (*((struct_thread *) (*l_nouvel_objet).donnee)).pid = getpid();
  105:     (*((struct_thread *) (*l_nouvel_objet).donnee)).tid = pthread_self();
  106:     (*((struct_thread *) (*l_nouvel_objet).donnee)).thread_principal =
  107:             thread_principal;
  108:     (*((struct_thread *) (*l_nouvel_objet).donnee)).s_etat_processus =
  109:             s_etat_processus;
  110: 
  111: #   ifndef SEMAPHORES_NOMMES
  112:     while(sem_wait(&semaphore_liste_threads) == -1)
  113: #   else
  114:     while(sem_wait(semaphore_liste_threads) == -1)
  115: #   endif
  116:     {
  117:         if (errno != EINTR)
  118:         {
  119:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  120:             sigpending(&set);
  121: 
  122:             (*s_etat_processus).erreur_systeme = d_es_processus;
  123:             return;
  124:         }
  125:     }
  126: 
  127:     (*l_nouvel_objet).suivant = liste_threads;
  128:     liste_threads = l_nouvel_objet;
  129: 
  130: #   ifndef SEMAPHORES_NOMMES
  131:     if (sem_post(&semaphore_liste_threads) != 0)
  132: #   else
  133:     if (sem_post(semaphore_liste_threads) != 0)
  134: #   endif
  135:     {
  136:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  137:         sigpending(&set);
  138: 
  139:         (*s_etat_processus).erreur_systeme = d_es_processus;
  140:         return;
  141:     }
  142: 
  143:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  144:     sigpending(&set);
  145:     return;
  146: }
  147: 
  148: void
  149: insertion_thread_surveillance(struct_processus *s_etat_processus,
  150:         struct_descripteur_thread *s_argument_thread)
  151: {
  152:     sigset_t                                    oldset;
  153:     sigset_t                                    set;
  154: 
  155:     volatile struct_liste_chainee_volatile      *l_nouvel_objet;
  156: 
  157:     sigfillset(&set);
  158:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
  159: 
  160:     if ((l_nouvel_objet = malloc(sizeof(struct_liste_chainee_volatile)))
  161:             == NULL)
  162:     {
  163:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  164:         sigpending(&set);
  165: 
  166:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
  167:         return;
  168:     }
  169: 
  170: #   ifndef SEMAPHORES_NOMMES
  171:     while(sem_wait(&semaphore_liste_threads) == -1)
  172: #   else
  173:     while(sem_wait(semaphore_liste_threads) == -1)
  174: #   endif
  175:     {
  176:         if (errno != EINTR)
  177:         {
  178:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  179:             sigpending(&set);
  180: 
  181:             (*s_etat_processus).erreur_systeme = d_es_processus;
  182:             return;
  183:         }
  184:     }
  185: 
  186:     pthread_mutex_lock(&((*s_argument_thread).mutex));
  187:     (*s_argument_thread).nombre_references++;
  188:     pthread_mutex_unlock(&((*s_argument_thread).mutex));
  189: 
  190:     (*l_nouvel_objet).suivant = liste_threads_surveillance;
  191:     (*l_nouvel_objet).donnee = (void *) s_argument_thread;
  192: 
  193:     liste_threads_surveillance = l_nouvel_objet;
  194: 
  195: #   ifndef SEMAPHORES_NOMMES
  196:     if (sem_post(&semaphore_liste_threads) != 0)
  197: #   else
  198:     if (sem_post(semaphore_liste_threads) != 0)
  199: #   endif
  200:     {
  201:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  202:         sigpending(&set);
  203: 
  204:         (*s_etat_processus).erreur_systeme = d_es_processus;
  205:         return;
  206:     }
  207: 
  208:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  209:     sigpending(&set);
  210:     return;
  211: }
  212: 
  213: void
  214: retrait_thread(struct_processus *s_etat_processus)
  215: {
  216:     sigset_t                                oldset;
  217:     sigset_t                                set;
  218: 
  219:     volatile struct_liste_chainee_volatile  *l_element_precedent;
  220:     volatile struct_liste_chainee_volatile  *l_element_courant;
  221: 
  222:     sigfillset(&set);
  223:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
  224: 
  225: #   ifndef SEMAPHORES_NOMMES
  226:     while(sem_wait(&semaphore_liste_threads) == -1)
  227: #   else
  228:     while(sem_wait(semaphore_liste_threads) == -1)
  229: #   endif
  230:     {
  231:         if (errno != EINTR)
  232:         {
  233:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  234:             sigpending(&set);
  235: 
  236:             (*s_etat_processus).erreur_systeme = d_es_processus;
  237:             return;
  238:         }
  239:     }
  240: 
  241:     l_element_precedent = NULL;
  242:     l_element_courant = liste_threads;
  243: 
  244:     while(l_element_courant != NULL)
  245:     {
  246:         if (((*((struct_thread *) (*l_element_courant).donnee)).pid
  247:                 == getpid()) && (pthread_equal((*((struct_thread *)
  248:                 (*l_element_courant).donnee)).tid, pthread_self()) != 0))
  249:         {
  250:             break;
  251:         }
  252: 
  253:         l_element_precedent = l_element_courant;
  254:         l_element_courant = (*l_element_courant).suivant;
  255:     }
  256: 
  257:     if (l_element_courant == NULL)
  258:     {
  259: #       ifndef SEMAPHORES_NOMMES
  260:         sem_post(&semaphore_liste_threads);
  261: #       else
  262:         sem_post(semaphore_liste_threads);
  263: #       endif
  264:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  265:         sigpending(&set);
  266: 
  267:         (*s_etat_processus).erreur_systeme = d_es_processus;
  268:         return;
  269:     }
  270: 
  271:     if (l_element_precedent == NULL)
  272:     {
  273:         liste_threads = (*l_element_courant).suivant;
  274:     }
  275:     else
  276:     {
  277:         (*l_element_precedent).suivant = (*l_element_courant).suivant;
  278:     }
  279: 
  280:     if (pthread_setspecific(semaphore_fork_processus_courant, NULL) != 0)
  281:     {
  282:         (*s_etat_processus).erreur_systeme = d_es_processus;
  283: 
  284: #       ifndef SEMAPHORES_NOMMES
  285:         sem_post(&semaphore_liste_threads);
  286: #       else
  287:         sem_post(semaphore_liste_threads);
  288: #       endif
  289:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  290:         sigpending(&set);
  291:         return;
  292:     }
  293: 
  294: #   ifndef SEMAPHORES_NOMMES
  295:     if (sem_post(&semaphore_liste_threads) != 0)
  296: #   else
  297:     if (sem_post(semaphore_liste_threads) != 0)
  298: #   endif
  299:     {
  300:         (*s_etat_processus).erreur_systeme = d_es_processus;
  301: 
  302:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  303:         sigpending(&set);
  304:         return;
  305:     }
  306: 
  307:     free((void *) (*l_element_courant).donnee);
  308:     free((struct_liste_chainee_volatile *) l_element_courant);
  309: 
  310:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  311:     sigpending(&set);
  312:     return;
  313: }
  314: 
  315: void
  316: retrait_thread_surveillance(struct_processus *s_etat_processus,
  317:         struct_descripteur_thread *s_argument_thread)
  318: {
  319:     sigset_t                                set;
  320:     sigset_t                                oldset;
  321: 
  322:     volatile struct_liste_chainee_volatile  *l_element_precedent;
  323:     volatile struct_liste_chainee_volatile  *l_element_courant;
  324: 
  325:     sigfillset(&set);
  326:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
  327: 
  328: #   ifndef SEMAPHORES_NOMMES
  329:     while(sem_wait(&semaphore_liste_threads) == -1)
  330: #   else
  331:     while(sem_wait(semaphore_liste_threads) == -1)
  332: #   endif
  333:     {
  334:         if (errno != EINTR)
  335:         {
  336:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  337:             sigpending(&set);
  338: 
  339:             (*s_etat_processus).erreur_systeme = d_es_processus;
  340:             return;
  341:         }
  342:     }
  343: 
  344:     l_element_precedent = NULL;
  345:     l_element_courant = liste_threads_surveillance;
  346: 
  347:     while(l_element_courant != NULL)
  348:     {
  349:         if ((*l_element_courant).donnee == (void *) s_argument_thread)
  350:         {
  351:             break;
  352:         }
  353: 
  354:         l_element_precedent = l_element_courant;
  355:         l_element_courant = (*l_element_courant).suivant;
  356:     }
  357: 
  358:     if (l_element_courant == NULL)
  359:     {
  360: #       ifndef SEMAPHORES_NOMMES
  361:         sem_post(&semaphore_liste_threads);
  362: #       else
  363:         sem_post(semaphore_liste_threads);
  364: #       endif
  365:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  366:         sigpending(&set);
  367: 
  368:         (*s_etat_processus).erreur_systeme = d_es_processus;
  369:         return;
  370:     }
  371: 
  372:     if (l_element_precedent == NULL)
  373:     {
  374:         liste_threads_surveillance = (*l_element_courant).suivant;
  375:     }
  376:     else
  377:     {
  378:         (*l_element_precedent).suivant = (*l_element_courant).suivant;
  379:     }
  380: 
  381:     if (pthread_mutex_lock(&((*s_argument_thread).mutex)) != 0)
  382:     {
  383: #       ifndef SEMAPHORES_NOMMES
  384:         sem_post(&semaphore_liste_threads);
  385: #       else
  386:         sem_post(semaphore_liste_threads);
  387: #       endif
  388:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  389:         sigpending(&set);
  390: 
  391:         (*s_etat_processus).erreur_systeme = d_es_processus;
  392:         return;
  393:     }
  394: 
  395:     (*s_argument_thread).nombre_references--;
  396: 
  397:     BUG((*s_argument_thread).nombre_references < 0,
  398:             printf("(*s_argument_thread).nombre_references = %d\n",
  399:             (int) (*s_argument_thread).nombre_references));
  400: 
  401:     if ((*s_argument_thread).nombre_references == 0)
  402:     {
  403:         if (pthread_mutex_unlock(&((*s_argument_thread).mutex)) != 0)
  404:         {
  405: #           ifndef SEMAPHORES_NOMMES
  406:             sem_post(&semaphore_liste_threads);
  407: #           else
  408:             sem_post(semaphore_liste_threads);
  409: #           endif
  410:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  411:             sigpending(&set);
  412: 
  413:             (*s_etat_processus).erreur_systeme = d_es_processus;
  414:             return;
  415:         }
  416: 
  417:         pthread_mutex_destroy(&((*s_argument_thread).mutex));
  418:         free(s_argument_thread);
  419:     }
  420:     else
  421:     {
  422:         if (pthread_mutex_unlock(&((*s_argument_thread).mutex)) != 0)
  423:         {
  424: #           ifndef SEMAPHORES_NOMMES
  425:             sem_post(&semaphore_liste_threads);
  426: #           else
  427:             sem_post(semaphore_liste_threads);
  428: #           endif
  429:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  430:             sigpending(&set);
  431: 
  432:             (*s_etat_processus).erreur_systeme = d_es_processus;
  433:             return;
  434:         }
  435:     }
  436: 
  437: #   ifndef SEMAPHORES_NOMMES
  438:     if (sem_post(&semaphore_liste_threads) != 0)
  439: #   else
  440:     if (sem_post(semaphore_liste_threads) != 0)
  441: #   endif
  442:     {
  443:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  444:         sigpending(&set);
  445: 
  446:         (*s_etat_processus).erreur_systeme = d_es_processus;
  447:         return;
  448:     }
  449: 
  450:     free((struct_liste_chainee_volatile *) l_element_courant);
  451: 
  452:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  453:     sigpending(&set);
  454: 
  455:     return;
  456: }
  457: 
  458: void
  459: verrouillage_threads_concurrents(struct_processus *s_etat_processus)
  460: {
  461:     volatile struct_liste_chainee_volatile  *l_element_courant;
  462: 
  463: #   ifndef SEMAPHORES_NOMMES
  464:     while(sem_wait(&semaphore_liste_threads) == -1)
  465: #   else
  466:     while(sem_wait(semaphore_liste_threads) == -1)
  467: #   endif
  468:     {
  469:         if (errno != EINTR)
  470:         {
  471:             (*s_etat_processus).erreur_systeme = d_es_processus;
  472:             return;
  473:         }
  474:     }
  475: 
  476:     l_element_courant = liste_threads;
  477: 
  478:     while(l_element_courant != NULL)
  479:     {
  480:         if (((*((struct_thread *) (*l_element_courant).donnee)).pid
  481:                 == getpid()) && (pthread_equal((*((struct_thread *)
  482:                 (*l_element_courant).donnee)).tid, pthread_self()) == 0))
  483:         {
  484: #           ifndef SEMAPHORES_NOMMES
  485:             while(sem_wait(&((*(*((struct_thread *) (*l_element_courant)
  486:                     .donnee)).s_etat_processus).semaphore_fork)) == -1)
  487: #           else
  488:             while(sem_wait((*(*((struct_thread *) (*l_element_courant)
  489:                     .donnee)).s_etat_processus).semaphore_fork) == -1)
  490: #           endif
  491:             {
  492:                 if (errno != EINTR)
  493:                 {
  494:                     (*s_etat_processus).erreur_systeme = d_es_processus;
  495:                     return;
  496:                 }
  497:             }
  498:         }
  499: 
  500:         l_element_courant = (*l_element_courant).suivant;
  501:     }
  502: 
  503:     return;
  504: }
  505: 
  506: void
  507: deverrouillage_threads_concurrents(struct_processus *s_etat_processus)
  508: {
  509:     volatile struct_liste_chainee_volatile  *l_element_courant;
  510: 
  511:     l_element_courant = liste_threads;
  512: 
  513:     while(l_element_courant != NULL)
  514:     {
  515:         if (((*((struct_thread *) (*l_element_courant).donnee)).pid
  516:                 == getpid()) && (pthread_equal((*((struct_thread *)
  517:                 (*l_element_courant).donnee)).tid, pthread_self()) == 0))
  518:         {
  519: #           ifndef SEMAPHORES_NOMMES
  520:             if (sem_post(&((*(*((struct_thread *)
  521:                     (*l_element_courant).donnee)).s_etat_processus)
  522:                     .semaphore_fork)) != 0)
  523: #           else
  524:             if (sem_post((*(*((struct_thread *)
  525:                     (*l_element_courant).donnee)).s_etat_processus)
  526:                     .semaphore_fork) != 0)
  527: #           endif
  528:             {
  529: #               ifndef SEMAPHORES_NOMMES
  530:                 if (sem_post(&semaphore_liste_threads) != 0)
  531:                 {
  532:                     (*s_etat_processus).erreur_systeme = d_es_processus;
  533:                     return;
  534:                 }
  535: #               else
  536:                 if (sem_post(semaphore_liste_threads) != 0)
  537:                 {
  538:                     (*s_etat_processus).erreur_systeme = d_es_processus;
  539:                     return;
  540:                 }
  541: #               endif
  542: 
  543:                 (*s_etat_processus).erreur_systeme = d_es_processus;
  544:                 return;
  545:             }
  546:         }
  547: 
  548:         l_element_courant = (*l_element_courant).suivant;
  549:     }
  550: 
  551: #   ifndef SEMAPHORES_NOMMES
  552:     if (sem_post(&semaphore_liste_threads) != 0)
  553: #   else
  554:     if (sem_post(semaphore_liste_threads) != 0)
  555: #   endif
  556:     {
  557:         (*s_etat_processus).erreur_systeme = d_es_processus;
  558:         return;
  559:     }
  560: 
  561:     return;
  562: }
  563: 
  564: void
  565: liberation_threads(struct_processus *s_etat_processus)
  566: {
  567:     logical1                                    suppression_variables_partagees;
  568: 
  569:     sigset_t                                    oldset;
  570:     sigset_t                                    set;
  571: 
  572:     struct_descripteur_thread                   *s_argument_thread;
  573: 
  574:     struct_processus                            *candidat;
  575: 
  576:     unsigned long                               i;
  577: 
  578:     void                                        *element_candidat;
  579:     void                                        *element_courant;
  580:     void                                        *element_suivant;
  581: 
  582:     volatile struct_liste_chainee_volatile      *l_element_courant;
  583:     volatile struct_liste_chainee_volatile      *l_element_suivant;
  584: 
  585:     sigfillset(&set);
  586:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
  587: 
  588: #   ifndef SEMAPHORES_NOMMES
  589:     while(sem_wait(&semaphore_liste_threads) == -1)
  590: #   else
  591:     while(sem_wait(semaphore_liste_threads) == -1)
  592: #   endif
  593:     {
  594:         if (errno != EINTR)
  595:         {
  596:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
  597:             (*s_etat_processus).erreur_systeme = d_es_processus;
  598:             return;
  599:         }
  600:     }
  601: 
  602:     l_element_courant = liste_threads;
  603:     suppression_variables_partagees = d_faux;
  604: 
  605:     while(l_element_courant != NULL)
  606:     {
  607:         if ((*((struct_thread *) (*l_element_courant).donnee)).s_etat_processus
  608:                 != s_etat_processus)
  609:         {
  610:             candidat = s_etat_processus;
  611:             s_etat_processus = (*((struct_thread *)
  612:                     (*l_element_courant).donnee)).s_etat_processus;
  613:             free((*s_etat_processus).localisation);
  614: 
  615:             // (*s_etat_processus).instruction_courante peut pointer sur
  616:             // n'importe quoi (une instruction courante ou un champ d'une
  617:             // structure objet). On ne le libère pas quitte à avoir une
  618:             // petite fuite mémoire dans le processus fils.
  619: 
  620:             if ((*s_etat_processus).instruction_courante != NULL)
  621:             {
  622:                 //free((*s_etat_processus).instruction_courante);
  623:             }
  624: 
  625:             close((*s_etat_processus).pipe_acquittement);
  626:             close((*s_etat_processus).pipe_donnees);
  627:             close((*s_etat_processus).pipe_injections);
  628:             close((*s_etat_processus).pipe_nombre_injections);
  629:             close((*s_etat_processus).pipe_interruptions);
  630:             close((*s_etat_processus).pipe_nombre_objets_attente);
  631:             close((*s_etat_processus).pipe_nombre_interruptions_attente);
  632: 
  633:             liberation(s_etat_processus, (*s_etat_processus).at_exit);
  634: 
  635:             if ((*s_etat_processus).nom_fichier_impression != NULL)
  636:             {
  637:                 free((*s_etat_processus).nom_fichier_impression);
  638:             }
  639: 
  640:             while((*s_etat_processus).fichiers_graphiques != NULL)
  641:             {
  642:                 free((*(*s_etat_processus).fichiers_graphiques).nom);
  643: 
  644:                 if ((*(*s_etat_processus).fichiers_graphiques).legende != NULL)
  645:                 {
  646:                     free((*(*s_etat_processus).fichiers_graphiques).legende);
  647:                 }
  648: 
  649:                 element_courant = (*s_etat_processus).fichiers_graphiques;
  650:                 (*s_etat_processus).fichiers_graphiques =
  651:                         (*(*s_etat_processus).fichiers_graphiques).suivant;
  652: 
  653:                 free(element_courant);
  654:             }
  655: 
  656:             if ((*s_etat_processus).entree_standard != NULL)
  657:             {
  658:                 pclose((*s_etat_processus).entree_standard);
  659:             }
  660: 
  661:             if ((*s_etat_processus).generateur_aleatoire != NULL)
  662:             {
  663:                 liberation_generateur_aleatoire(s_etat_processus);
  664:             }
  665: 
  666:             if ((*s_etat_processus).instruction_derniere_erreur != NULL)
  667:             {
  668:                 free((*s_etat_processus).instruction_derniere_erreur);
  669:                 (*s_etat_processus).instruction_derniere_erreur = NULL;
  670:             }
  671: 
  672:             element_courant = (void *) (*s_etat_processus)
  673:                     .l_base_pile_processus;
  674:             while(element_courant != NULL)
  675:             {
  676:                 s_argument_thread = (struct_descripteur_thread *)
  677:                         (*((struct_liste_chainee *) element_courant)).donnee;
  678: 
  679:                 if (pthread_mutex_lock(&((*s_argument_thread).mutex)) != 0)
  680:                 {
  681:                     (*s_etat_processus).erreur_systeme = d_es_processus;
  682:                     sem_post(&semaphore_liste_threads);
  683:                     return;
  684:                 }
  685: 
  686:                 (*s_argument_thread).nombre_references--;
  687: 
  688:                 BUG((*s_argument_thread).nombre_references < 0,
  689:                         printf("(*s_argument_thread).nombre_references = %d\n",
  690:                         (int) (*s_argument_thread).nombre_references));
  691: 
  692:                 if ((*s_argument_thread).nombre_references == 0)
  693:                 {
  694:                     close((*s_argument_thread).pipe_objets[0]);
  695:                     close((*s_argument_thread).pipe_acquittement[1]);
  696:                     close((*s_argument_thread).pipe_injections[1]);
  697:                     close((*s_argument_thread).pipe_nombre_injections[1]);
  698:                     close((*s_argument_thread).pipe_nombre_objets_attente[0]);
  699:                     close((*s_argument_thread).pipe_interruptions[0]);
  700:                     close((*s_argument_thread)
  701:                             .pipe_nombre_interruptions_attente[0]);
  702: 
  703:                     if (pthread_mutex_unlock(&((*s_argument_thread).mutex))
  704:                             != 0)
  705:                     {
  706:                         (*s_etat_processus).erreur_systeme = d_es_processus;
  707:                         sem_post(&semaphore_liste_threads);
  708:                         return;
  709:                     }
  710: 
  711:                     pthread_mutex_destroy(&((*s_argument_thread).mutex));
  712: 
  713:                     if ((*s_argument_thread).processus_detache == d_faux)
  714:                     {
  715:                         if ((*s_argument_thread).destruction_objet == d_vrai)
  716:                         {
  717:                             liberation(s_etat_processus, (*s_argument_thread)
  718:                                     .argument);
  719:                         }
  720:                     }
  721: 
  722:                     free(s_argument_thread);
  723:                 }
  724:                 else
  725:                 {
  726:                     if (pthread_mutex_unlock(&((*s_argument_thread).mutex))
  727:                             != 0)
  728:                     {
  729:                         (*s_etat_processus).erreur_systeme = d_es_processus;
  730:                         sem_post(&semaphore_liste_threads);
  731:                         return;
  732:                     }
  733:                 }
  734: 
  735:                 element_suivant = (*((struct_liste_chainee *) element_courant))
  736:                         .suivant;
  737:                 free(element_courant);
  738:                 element_courant = element_suivant;
  739:             }
  740: 
  741:             (*s_etat_processus).l_base_pile_processus = NULL;
  742: 
  743:             pthread_mutex_trylock(&((*(*s_etat_processus).indep).mutex));
  744:             pthread_mutex_unlock(&((*(*s_etat_processus).indep).mutex));
  745:             liberation(s_etat_processus, (*s_etat_processus).indep);
  746: 
  747:             pthread_mutex_trylock(&((*(*s_etat_processus).depend).mutex));
  748:             pthread_mutex_unlock(&((*(*s_etat_processus).depend).mutex));
  749:             liberation(s_etat_processus, (*s_etat_processus).depend);
  750: 
  751:             free((*s_etat_processus).label_x);
  752:             free((*s_etat_processus).label_y);
  753:             free((*s_etat_processus).label_z);
  754:             free((*s_etat_processus).titre);
  755:             free((*s_etat_processus).legende);
  756: 
  757:             pthread_mutex_trylock(&((*(*s_etat_processus)
  758:                     .parametres_courbes_de_niveau).mutex));
  759:             pthread_mutex_unlock(&((*(*s_etat_processus)
  760:                     .parametres_courbes_de_niveau).mutex));
  761:             liberation(s_etat_processus, (*s_etat_processus)
  762:                     .parametres_courbes_de_niveau);
  763: 
  764:             for(i = 0; i < d_NOMBRE_INTERRUPTIONS; i++)
  765:             {
  766:                 if ((*s_etat_processus).corps_interruptions[i] != NULL)
  767:                 {
  768:                     pthread_mutex_trylock(&((*(*s_etat_processus)
  769:                             .corps_interruptions[i]).mutex));
  770:                     pthread_mutex_unlock(&((*(*s_etat_processus)
  771:                             .corps_interruptions[i]).mutex));
  772: 
  773:                     liberation(s_etat_processus,
  774:                             (*s_etat_processus).corps_interruptions[i]);
  775:                 }
  776: 
  777:                 element_courant = (*s_etat_processus)
  778:                         .pile_origine_interruptions[i];
  779: 
  780:                 while(element_courant != NULL)
  781:                 {
  782:                     element_suivant = (*((struct_liste_chainee *)
  783:                             element_courant)).suivant;
  784: 
  785:                     pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
  786:                             element_courant)).donnee).mutex));
  787:                     pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
  788:                             element_courant)).donnee).mutex));
  789: 
  790:                     liberation(s_etat_processus,
  791:                             (*((struct_liste_chainee *) element_courant))
  792:                             .donnee);
  793:                     free(element_courant);
  794: 
  795:                     element_courant = element_suivant;
  796:                 }
  797:             }
  798: 
  799:             for(i = 0; i < (*s_etat_processus).nombre_variables; i++)
  800:             {
  801:                 pthread_mutex_trylock(&((*(*s_etat_processus)
  802:                         .s_liste_variables[i].objet).mutex));
  803:                 pthread_mutex_unlock(&((*(*s_etat_processus)
  804:                         .s_liste_variables[i].objet).mutex));
  805: 
  806:                 // Les variables de niveau 0 sont des définitions qui
  807:                 // ne sont pas copiées entre threads.
  808:                 if ((*s_etat_processus).s_liste_variables[i].niveau > 0)
  809:                 {
  810:                     liberation(s_etat_processus,
  811:                             (*s_etat_processus).s_liste_variables[i].objet);
  812:                 }
  813: 
  814:                 free((*s_etat_processus).s_liste_variables[i].nom);
  815:             }
  816: 
  817:             free((*s_etat_processus).s_liste_variables);
  818: 
  819:             for(i = 0; i < (*s_etat_processus).nombre_variables_statiques; i++)
  820:             {
  821:                 pthread_mutex_trylock(&((*(*s_etat_processus)
  822:                         .s_liste_variables_statiques[i].objet).mutex));
  823:                 pthread_mutex_unlock(&((*(*s_etat_processus)
  824:                         .s_liste_variables_statiques[i].objet).mutex));
  825: 
  826:                 liberation(s_etat_processus, (*s_etat_processus)
  827:                         .s_liste_variables_statiques[i].objet);
  828:                 free((*s_etat_processus).s_liste_variables_statiques[i].nom);
  829:             }
  830: 
  831:             free((*s_etat_processus).s_liste_variables_statiques);
  832: 
  833:             // Ne peut être effacé qu'une seule fois
  834:             if (suppression_variables_partagees == d_faux)
  835:             {
  836:                 suppression_variables_partagees = d_vrai;
  837: 
  838:                 for(i = 0; i < (*(*s_etat_processus)
  839:                         .s_liste_variables_partagees).nombre_variables; i++)
  840:                 {
  841:                     pthread_mutex_trylock(&((*(*(*s_etat_processus)
  842:                             .s_liste_variables_partagees).table[i].objet)
  843:                             .mutex));
  844:                     pthread_mutex_unlock(&((*(*(*s_etat_processus)
  845:                             .s_liste_variables_partagees).table[i].objet)
  846:                             .mutex));
  847: 
  848:                     liberation(s_etat_processus, (*(*s_etat_processus)
  849:                             .s_liste_variables_partagees).table[i].objet);
  850:                     free((*(*s_etat_processus).s_liste_variables_partagees)
  851:                             .table[i].nom);
  852:                 }
  853: 
  854:                 if ((*(*s_etat_processus).s_liste_variables_partagees).table
  855:                         != NULL)
  856:                 {
  857:                     free((struct_variable_partagee *) (*(*s_etat_processus)
  858:                             .s_liste_variables_partagees).table);
  859:                 }
  860: 
  861:                 pthread_mutex_trylock(&((*(*s_etat_processus)
  862:                         .s_liste_variables_partagees).mutex));
  863:                 pthread_mutex_unlock(&((*(*s_etat_processus)
  864:                         .s_liste_variables_partagees).mutex));
  865:             }
  866: 
  867:             element_courant = (*s_etat_processus).l_base_pile;
  868:             while(element_courant != NULL)
  869:             {
  870:                 element_suivant = (*((struct_liste_chainee *)
  871:                         element_courant)).suivant;
  872: 
  873:                 pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
  874:                         element_courant)).donnee).mutex));
  875:                 pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
  876:                         element_courant)).donnee).mutex));
  877: 
  878:                 liberation(s_etat_processus,
  879:                         (*((struct_liste_chainee *)
  880:                         element_courant)).donnee);
  881:                 free((struct_liste_chainee *) element_courant);
  882: 
  883:                 element_courant = element_suivant;
  884:             }
  885: 
  886:             element_courant = (*s_etat_processus).l_base_pile_contextes;
  887:             while(element_courant != NULL)
  888:             {
  889:                 element_suivant = (*((struct_liste_chainee *)
  890:                         element_courant)).suivant;
  891: 
  892:                 pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
  893:                         element_courant)).donnee).mutex));
  894:                 pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
  895:                         element_courant)).donnee).mutex));
  896:                 liberation(s_etat_processus, (*((struct_liste_chainee *)
  897:                         element_courant)).donnee);
  898:                 free((struct_liste_chainee *) element_courant);
  899: 
  900:                 element_courant = element_suivant;
  901:             }
  902: 
  903:             element_courant = (*s_etat_processus).l_base_pile_taille_contextes;
  904:             while(element_courant != NULL)
  905:             {
  906:                 element_suivant = (*((struct_liste_chainee *)
  907:                         element_courant)).suivant;
  908: 
  909:                 pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
  910:                         element_courant)).donnee).mutex));
  911:                 pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
  912:                         element_courant)).donnee).mutex));
  913:                 liberation(s_etat_processus,
  914:                         (*((struct_liste_chainee *)
  915:                         element_courant)).donnee);
  916:                 free((struct_liste_chainee *) element_courant);
  917: 
  918:                 element_courant = element_suivant;
  919:             }
  920: 
  921:             for(i = 0; i < (*s_etat_processus).nombre_instructions_externes;
  922:                     i++)
  923:             {
  924:                 free((*s_etat_processus).s_instructions_externes[i].nom);
  925:                 free((*s_etat_processus).s_instructions_externes[i]
  926:                         .nom_bibliotheque);
  927:             }
  928: 
  929:             if ((*s_etat_processus).nombre_instructions_externes != 0)
  930:             {
  931:                 free((*s_etat_processus).s_instructions_externes);
  932:             }
  933: 
  934:             element_courant = (*s_etat_processus).s_bibliotheques;
  935:             while(element_courant != NULL)
  936:             {
  937:                 element_suivant = (*((struct_liste_chainee *)
  938:                         element_courant)).suivant;
  939: 
  940:                 element_candidat = (*candidat).s_bibliotheques;
  941:                 while(element_candidat != NULL)
  942:                 {
  943:                     if (((*((struct_bibliotheque *) (*((struct_liste_chainee *)
  944:                             element_courant)).donnee))
  945:                             .descripteur == (*((struct_bibliotheque *)
  946:                             (*((struct_liste_chainee *) element_candidat))
  947:                             .donnee)).descripteur) &&
  948:                             ((*((struct_bibliotheque *)
  949:                             (*((struct_liste_chainee *) element_courant))
  950:                             .donnee)).pid == (*((struct_bibliotheque *)
  951:                             (*((struct_liste_chainee *) element_candidat))
  952:                             .donnee)).pid) && (pthread_equal(
  953:                             (*((struct_bibliotheque *)
  954:                             (*((struct_liste_chainee *) element_courant))
  955:                             .donnee)).tid, (*((struct_bibliotheque *)
  956:                             (*((struct_liste_chainee *) element_candidat))
  957:                             .donnee)).tid) != 0))
  958:                     {
  959:                         break;
  960:                     }
  961: 
  962:                     element_candidat = (*((struct_liste_chainee *)
  963:                             element_candidat)).suivant;
  964:                 }
  965: 
  966:                 if (element_candidat == NULL)
  967:                 {
  968:                     dlclose((*((struct_bibliotheque *)
  969:                             (*((struct_liste_chainee *) element_courant))
  970:                             .donnee)).descripteur);
  971:                 }
  972: 
  973:                 free((*((struct_bibliotheque *)
  974:                         (*((struct_liste_chainee *)
  975:                         element_courant)).donnee)).nom);
  976:                 free((*((struct_liste_chainee *) element_courant)).donnee);
  977:                 free(element_courant);
  978: 
  979:                 element_courant = element_suivant;
  980:             }
  981: 
  982:             element_courant = (*s_etat_processus).l_base_pile_last;
  983:             while(element_courant != NULL)
  984:             {
  985:                 element_suivant = (*((struct_liste_chainee *)
  986:                         element_courant)).suivant;
  987: 
  988:                 pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
  989:                         element_courant)).donnee).mutex));
  990:                 pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
  991:                         element_courant)).donnee).mutex));
  992:                 liberation(s_etat_processus,
  993:                         (*((struct_liste_chainee *) element_courant)).donnee);
  994:                 free(element_courant);
  995: 
  996:                 element_courant = element_suivant;
  997:             }
  998: 
  999:             element_courant = (*s_etat_processus).l_base_pile_systeme;
 1000:             while(element_courant != NULL)
 1001:             {
 1002:                 element_suivant = (*((struct_liste_pile_systeme *)
 1003:                         element_courant)).suivant;
 1004: 
 1005:                 if ((*((struct_liste_pile_systeme *)
 1006:                         element_courant)).indice_boucle != NULL)
 1007:                 {
 1008:                     pthread_mutex_trylock(&((*(*((struct_liste_pile_systeme *)
 1009:                             element_courant)).indice_boucle).mutex));
 1010:                     pthread_mutex_unlock(&((*(*((struct_liste_pile_systeme *)
 1011:                             element_courant)).indice_boucle).mutex));
 1012:                 }
 1013: 
 1014:                 liberation(s_etat_processus,
 1015:                         (*((struct_liste_pile_systeme *)
 1016:                         element_courant)).indice_boucle);
 1017: 
 1018:                 if ((*((struct_liste_pile_systeme *)
 1019:                         element_courant)).limite_indice_boucle != NULL)
 1020:                 {
 1021:                     pthread_mutex_trylock(&((*(*((struct_liste_pile_systeme *)
 1022:                             element_courant)).limite_indice_boucle).mutex));
 1023:                     pthread_mutex_unlock(&((*(*((struct_liste_pile_systeme *)
 1024:                             element_courant)).limite_indice_boucle).mutex));
 1025:                 }
 1026: 
 1027:                 liberation(s_etat_processus,
 1028:                         (*((struct_liste_pile_systeme *)
 1029:                         element_courant)).limite_indice_boucle);
 1030: 
 1031:                 if ((*((struct_liste_pile_systeme *)
 1032:                         element_courant)).objet_de_test != NULL)
 1033:                 {
 1034:                     pthread_mutex_trylock(&((*(*((struct_liste_pile_systeme *)
 1035:                             element_courant)).objet_de_test).mutex));
 1036:                     pthread_mutex_unlock(&((*(*((struct_liste_pile_systeme *)
 1037:                             element_courant)).objet_de_test).mutex));
 1038:                 }
 1039: 
 1040:                 liberation(s_etat_processus,
 1041:                         (*((struct_liste_pile_systeme *)
 1042:                         element_courant)).objet_de_test);
 1043: 
 1044:                 if ((*((struct_liste_pile_systeme *)
 1045:                         element_courant)).nom_variable != NULL)
 1046:                 {
 1047:                     free((*((struct_liste_pile_systeme *)
 1048:                             element_courant)).nom_variable);
 1049:                 }
 1050: 
 1051:                 free(element_courant);
 1052: 
 1053:                 element_courant = element_suivant;
 1054:             }
 1055: 
 1056:             element_courant = (*s_etat_processus).s_fichiers;
 1057:             while(element_courant != NULL)
 1058:             {
 1059:                 element_suivant = (*((struct_liste_chainee *)
 1060:                         element_courant)).suivant;
 1061: 
 1062:                 element_candidat = (*candidat).s_fichiers;
 1063:                 while(element_candidat != NULL)
 1064:                 {
 1065:                     if (((*((struct_descripteur_fichier *)
 1066:                             (*((struct_liste_chainee *) element_courant))
 1067:                             .donnee)).pid ==
 1068:                             (*((struct_descripteur_fichier *)
 1069:                             (*((struct_liste_chainee *) element_candidat))
 1070:                             .donnee)).pid) && (pthread_equal(
 1071:                             (*((struct_descripteur_fichier *)
 1072:                             (*((struct_liste_chainee *) element_courant))
 1073:                             .donnee)).tid, (*((struct_descripteur_fichier *)
 1074:                             (*((struct_liste_chainee *) element_candidat))
 1075:                             .donnee)).tid) != 0))
 1076:                     {
 1077:                         if ((*((struct_descripteur_fichier *)
 1078:                                 (*((struct_liste_chainee *) element_courant))
 1079:                                 .donnee)).type ==
 1080:                                 (*((struct_descripteur_fichier *)
 1081:                                 (*((struct_liste_chainee *) element_candidat))
 1082:                                 .donnee)).type)
 1083:                         {
 1084:                             if ((*((struct_descripteur_fichier *)
 1085:                                     (*((struct_liste_chainee *)
 1086:                                     element_candidat)).donnee)).type == 'C')
 1087:                             {
 1088:                                 if ((*((struct_descripteur_fichier *)
 1089:                                         (*((struct_liste_chainee *)
 1090:                                         element_courant)).donnee))
 1091:                                         .descripteur_c ==
 1092:                                         (*((struct_descripteur_fichier *)
 1093:                                         (*((struct_liste_chainee *)
 1094:                                         element_candidat)).donnee))
 1095:                                         .descripteur_c)
 1096:                                 {
 1097:                                     break;
 1098:                                 }
 1099:                             }
 1100:                             else
 1101:                             {
 1102:                                 if (((*((struct_descripteur_fichier *)
 1103:                                         (*((struct_liste_chainee *)
 1104:                                         element_courant)).donnee))
 1105:                                         .descripteur_sqlite ==
 1106:                                         (*((struct_descripteur_fichier *)
 1107:                                         (*((struct_liste_chainee *)
 1108:                                         element_candidat)).donnee))
 1109:                                         .descripteur_sqlite) &&
 1110:                                         ((*((struct_descripteur_fichier *)
 1111:                                         (*((struct_liste_chainee *)
 1112:                                         element_courant)).donnee))
 1113:                                         .descripteur_c ==
 1114:                                         (*((struct_descripteur_fichier *)
 1115:                                         (*((struct_liste_chainee *)
 1116:                                         element_candidat)).donnee))
 1117:                                         .descripteur_c))
 1118:                                 {
 1119:                                     break;
 1120:                                 }
 1121:                             }
 1122:                         }
 1123:                     }
 1124: 
 1125:                     element_candidat = (*((struct_liste_chainee *)
 1126:                             element_candidat)).suivant;
 1127:                 }
 1128: 
 1129:                 if (element_candidat == NULL)
 1130:                 {
 1131:                     fclose((*((struct_descripteur_fichier *)
 1132:                             (*((struct_liste_chainee *) element_courant))
 1133:                             .donnee)).descripteur_c);
 1134: 
 1135:                     if ((*((struct_descripteur_fichier *)
 1136:                             (*((struct_liste_chainee *) element_courant))
 1137:                             .donnee)).type != 'C')
 1138:                     {
 1139:                         sqlite3_close((*((struct_descripteur_fichier *)
 1140:                                 (*((struct_liste_chainee *) element_courant))
 1141:                                 .donnee)).descripteur_sqlite);
 1142:                     }
 1143:                 }
 1144: 
 1145:                 free((*((struct_descripteur_fichier *)
 1146:                         (*((struct_liste_chainee *)
 1147:                         element_courant)).donnee)).nom);
 1148:                 free((struct_descripteur_fichier *)
 1149:                         (*((struct_liste_chainee *)
 1150:                         element_courant)).donnee);
 1151:                 free(element_courant);
 1152: 
 1153:                 element_courant = element_suivant;
 1154:             }
 1155: 
 1156:             element_courant = (*s_etat_processus).s_sockets;
 1157:             while(element_courant != NULL)
 1158:             {
 1159:                 element_suivant = (*((struct_liste_chainee *)
 1160:                         element_courant)).suivant;
 1161: 
 1162:                 element_candidat = (*candidat).s_sockets;
 1163:                 while(element_candidat != NULL)
 1164:                 {
 1165:                     if (((*((struct_socket *)
 1166:                             (*((struct_liste_chainee *) element_courant))
 1167:                             .donnee)).socket == (*((struct_socket *)
 1168:                             (*((struct_liste_chainee *) element_candidat))
 1169:                             .donnee)).socket) &&
 1170:                             ((*((struct_socket *)
 1171:                             (*((struct_liste_chainee *) element_courant))
 1172:                             .donnee)).pid == (*((struct_socket *)
 1173:                             (*((struct_liste_chainee *) element_candidat))
 1174:                             .donnee)).pid) && (pthread_equal(
 1175:                             (*((struct_socket *)
 1176:                             (*((struct_liste_chainee *) element_courant))
 1177:                             .donnee)).tid, (*((struct_socket *)
 1178:                             (*((struct_liste_chainee *) element_candidat))
 1179:                             .donnee)).tid) != 0))
 1180:                     {
 1181:                         break;
 1182:                     }
 1183: 
 1184:                     element_candidat = (*((struct_liste_chainee *)
 1185:                             element_candidat)).suivant;
 1186:                 }
 1187: 
 1188:                 if (element_candidat == NULL)
 1189:                 {
 1190:                     if ((*((struct_socket *) (*((struct_liste_chainee *)
 1191:                             element_courant)).donnee)).socket_connectee
 1192:                             == d_vrai)
 1193:                     {
 1194:                         shutdown((*((struct_socket *)
 1195:                                 (*((struct_liste_chainee *) element_courant))
 1196:                                 .donnee)).socket, SHUT_RDWR);
 1197:                     }
 1198: 
 1199:                     close((*((struct_socket *)
 1200:                             (*((struct_liste_chainee *) element_courant))
 1201:                             .donnee)).socket);
 1202:                 }
 1203: 
 1204:                 pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
 1205:                         element_courant)).donnee).mutex));
 1206:                 pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
 1207:                         element_courant)).donnee).mutex));
 1208: 
 1209:                 liberation(s_etat_processus,
 1210:                         (*((struct_liste_chainee *)
 1211:                         element_courant)).donnee);
 1212:                 free(element_courant);
 1213: 
 1214:                 element_courant = element_suivant;
 1215:             }
 1216: 
 1217: /*
 1218: ================================================================================
 1219:   À noter : on ne ferme pas la connexion car la conséquence immédiate est
 1220:   une destruction de l'objet pour le processus père.
 1221: ================================================================================
 1222: 
 1223:             element_courant = (*s_etat_processus).s_connecteurs_sql;
 1224:             while(element_courant != NULL)
 1225:             {
 1226:                 element_suivant = (*((struct_liste_chainee *)
 1227:                         element_courant)).suivant;
 1228: 
 1229:                 element_candidat = (*candidat).s_connecteurs_sql;
 1230:                 while(element_candidat != NULL)
 1231:                 {
 1232:                     if (((
 1233: #ifdef MYSQL_SUPPORT
 1234:                             ((*((struct_connecteur_sql *)
 1235:                             (*((struct_liste_chainee *) element_courant))
 1236:                             .donnee)).descripteur.mysql ==
 1237:                             (*((struct_connecteur_sql *)
 1238:                             (*((struct_liste_chainee *) element_candidat))
 1239:                             .donnee)).descripteur.mysql)
 1240:                             &&
 1241:                             (strcmp((*((struct_connecteur_sql *)
 1242:                             (*((struct_liste_chainee *) element_courant))
 1243:                             .donnee)).type, "MYSQL") == 0)
 1244:                             &&
 1245:                             (strcmp((*((struct_connecteur_sql *)
 1246:                             (*((struct_liste_chainee *) element_candidat))
 1247:                             .donnee)).type, "MYSQL") == 0)
 1248: #else
 1249:                             0
 1250: #endif
 1251:                             ) || (
 1252: #ifdef POSTGRESQL_SUPPORT
 1253:                             ((*((struct_connecteur_sql *)
 1254:                             (*((struct_liste_chainee *) element_courant))
 1255:                             .donnee)).descripteur.postgresql ==
 1256:                             (*((struct_connecteur_sql *)
 1257:                             (*((struct_liste_chainee *) element_candidat))
 1258:                             .donnee)).descripteur.postgresql)
 1259:                             &&
 1260:                             (strcmp((*((struct_connecteur_sql *)
 1261:                             (*((struct_liste_chainee *) element_courant))
 1262:                             .donnee)).type, "POSTGRESQL") == 0)
 1263:                             &&
 1264:                             (strcmp((*((struct_connecteur_sql *)
 1265:                             (*((struct_liste_chainee *) element_candidat))
 1266:                             .donnee)).type, "POSTGRESQL") == 0)
 1267: #else
 1268:                             0
 1269: #endif
 1270:                             )) &&
 1271:                             ((*((struct_connecteur_sql *)
 1272:                             (*((struct_liste_chainee *) element_courant))
 1273:                             .donnee)).pid == (*((struct_connecteur_sql *)
 1274:                             (*((struct_liste_chainee *) element_candidat))
 1275:                             .donnee)).pid) && (pthread_equal(
 1276:                             (*((struct_connecteur_sql *)
 1277:                             (*((struct_liste_chainee *) element_courant))
 1278:                             .donnee)).tid, (*((struct_connecteur_sql *)
 1279:                             (*((struct_liste_chainee *) element_candidat))
 1280:                             .donnee)).tid) != 0))
 1281:                     {
 1282:                         break;
 1283:                     }
 1284: 
 1285:                     element_candidat = (*((struct_liste_chainee *)
 1286:                             element_candidat)).suivant;
 1287:                 }
 1288: 
 1289:                 if (element_candidat == NULL)
 1290:                 {
 1291:                     sqlclose((*((struct_liste_chainee *) element_courant))
 1292:                             .donnee);
 1293:                 }
 1294: 
 1295:                 pthread_mutex_trylock(&((*(*((struct_liste_chainee *)
 1296:                         element_courant)).donnee).mutex));
 1297:                 pthread_mutex_unlock(&((*(*((struct_liste_chainee *)
 1298:                         element_courant)).donnee).mutex));
 1299: 
 1300:                 liberation(s_etat_processus, (*((struct_liste_chainee *)
 1301:                         element_courant)).donnee);
 1302:                 free(element_courant);
 1303: 
 1304:                 element_courant = element_suivant;
 1305:             }
 1306: */
 1307: 
 1308:             (*s_etat_processus).s_connecteurs_sql = NULL;
 1309: 
 1310:             element_courant = (*s_etat_processus).s_marques;
 1311:             while(element_courant != NULL)
 1312:             {
 1313:                 free((*((struct_marque *) element_courant)).label);
 1314:                 free((*((struct_marque *) element_courant)).position);
 1315:                 element_suivant = (*((struct_marque *) element_courant))
 1316:                         .suivant;
 1317:                 free(element_courant);
 1318:                 element_courant = element_suivant;
 1319:             }
 1320: 
 1321:             liberation_allocateur(s_etat_processus);
 1322: 
 1323: #           ifndef SEMAPHORES_NOMMES
 1324:             sem_post(&((*s_etat_processus).semaphore_fork));
 1325:             sem_destroy(&((*s_etat_processus).semaphore_fork));
 1326: #           else
 1327:             sem_post((*s_etat_processus).semaphore_fork);
 1328:             sem_destroy2((*s_etat_processus).semaphore_fork, sem_fork);
 1329: #           endif
 1330: 
 1331:             free(s_etat_processus);
 1332: 
 1333:             s_etat_processus = candidat;
 1334:         }
 1335: 
 1336:         l_element_suivant = (*l_element_courant).suivant;
 1337: 
 1338:         free((struct_thread *) (*l_element_courant).donnee);
 1339:         free((struct_liste_chainee *) l_element_courant);
 1340: 
 1341:         l_element_courant = l_element_suivant;
 1342:     }
 1343: 
 1344:     liste_threads = NULL;
 1345: 
 1346:     l_element_courant = liste_threads_surveillance;
 1347: 
 1348:     while(l_element_courant != NULL)
 1349:     {
 1350:         s_argument_thread = (struct_descripteur_thread *)
 1351:                 (*l_element_courant).donnee;
 1352: 
 1353:         if (pthread_mutex_lock(&((*s_argument_thread).mutex)) != 0)
 1354:         {
 1355:             (*s_etat_processus).erreur_systeme = d_es_processus;
 1356:             sem_post(&semaphore_liste_threads);
 1357:             return;
 1358:         }
 1359: 
 1360:         (*s_argument_thread).nombre_references--;
 1361: 
 1362:         BUG((*s_argument_thread).nombre_references < 0,
 1363:                 printf("(*s_argument_thread).nombre_references = %d\n",
 1364:                 (int) (*s_argument_thread).nombre_references));
 1365: 
 1366:         if ((*s_argument_thread).nombre_references == 0)
 1367:         {
 1368:             close((*s_argument_thread).pipe_objets[0]);
 1369:             close((*s_argument_thread).pipe_acquittement[1]);
 1370:             close((*s_argument_thread).pipe_injections[1]);
 1371:             close((*s_argument_thread).pipe_nombre_injections[1]);
 1372:             close((*s_argument_thread).pipe_nombre_objets_attente[0]);
 1373:             close((*s_argument_thread).pipe_interruptions[0]);
 1374:             close((*s_argument_thread).pipe_nombre_interruptions_attente[0]);
 1375: 
 1376:             if (pthread_mutex_unlock(&((*s_argument_thread).mutex)) != 0)
 1377:             {
 1378:                 (*s_etat_processus).erreur_systeme = d_es_processus;
 1379:                 sem_post(&semaphore_liste_threads);
 1380:                 return;
 1381:             }
 1382: 
 1383:             pthread_mutex_destroy(&((*s_argument_thread).mutex));
 1384: 
 1385:             if ((*s_argument_thread).processus_detache == d_faux)
 1386:             {
 1387:                 if ((*s_argument_thread).destruction_objet == d_vrai)
 1388:                 {
 1389:                     liberation(s_etat_processus, (*s_argument_thread).argument);
 1390:                 }
 1391:             }
 1392: 
 1393:             free(s_argument_thread);
 1394:         }
 1395:         else
 1396:         {
 1397:             if (pthread_mutex_unlock(&((*s_argument_thread).mutex)) != 0)
 1398:             {
 1399:                 (*s_etat_processus).erreur_systeme = d_es_processus;
 1400:                 sem_post(&semaphore_liste_threads);
 1401:                 return;
 1402:             }
 1403:         }
 1404: 
 1405:         l_element_suivant = (*l_element_courant).suivant;
 1406:         free((struct_liste_chainee *) l_element_courant);
 1407:         l_element_courant = l_element_suivant;
 1408:     }
 1409: 
 1410:     liste_threads_surveillance = NULL;
 1411: 
 1412: #   ifndef SEMAPHORES_NOMMES
 1413:     if (sem_post(&semaphore_liste_threads) != 0)
 1414: #   else
 1415:     if (sem_post(semaphore_liste_threads) != 0)
 1416: #   endif
 1417:     {
 1418:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1419:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1420:         return;
 1421:     }
 1422: 
 1423:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1424:     sigpending(&set);
 1425:     return;
 1426: }
 1427: 
 1428: static struct_processus *
 1429: recherche_thread(pid_t pid, pthread_t tid)
 1430: {
 1431:     volatile struct_liste_chainee_volatile      *l_element_courant;
 1432: 
 1433:     struct_processus                            *s_etat_processus;
 1434: 
 1435:     l_element_courant = liste_threads;
 1436: 
 1437:     while(l_element_courant != NULL)
 1438:     {
 1439:         if ((pthread_equal((*((struct_thread *) (*l_element_courant).donnee))
 1440:                 .tid, tid) != 0) && ((*((struct_thread *)
 1441:                 (*l_element_courant).donnee)).pid == pid))
 1442:         {
 1443:             break;
 1444:         }
 1445: 
 1446:         l_element_courant = (*l_element_courant).suivant;
 1447:     }
 1448: 
 1449:     if (l_element_courant == NULL)
 1450:     {
 1451:         /*
 1452:          * Le processus n'existe plus. On ne distribue aucun signal.
 1453:          */
 1454: 
 1455:         return(NULL);
 1456:     }
 1457: 
 1458:     s_etat_processus = (*((struct_thread *)
 1459:             (*l_element_courant).donnee)).s_etat_processus;
 1460: 
 1461:     return(s_etat_processus);
 1462: }
 1463: 
 1464: static logical1
 1465: recherche_thread_principal(pid_t pid, pthread_t *thread)
 1466: {
 1467:     volatile struct_liste_chainee_volatile      *l_element_courant;
 1468: 
 1469:     l_element_courant = liste_threads;
 1470: 
 1471:     while(l_element_courant != NULL)
 1472:     {
 1473:         if (((*((struct_thread *) (*l_element_courant).donnee)).thread_principal
 1474:                 == d_vrai) && ((*((struct_thread *)
 1475:                 (*l_element_courant).donnee)).pid == pid))
 1476:         {
 1477:             break;
 1478:         }
 1479: 
 1480:         l_element_courant = (*l_element_courant).suivant;
 1481:     }
 1482: 
 1483:     if (l_element_courant == NULL)
 1484:     {
 1485:         /*
 1486:          * Le processus n'existe plus. On ne distribue aucun signal.
 1487:          */
 1488: 
 1489:         return(d_faux);
 1490:     }
 1491: 
 1492:     (*thread) = (*((struct_thread *) (*l_element_courant).donnee)).tid;
 1493: 
 1494:     return(d_vrai);
 1495: }
 1496: 
 1497: 
 1498: /*
 1499: ================================================================================
 1500:   Procédures de gestion des signaux d'interruption
 1501: ================================================================================
 1502:   Entrée : variable globale
 1503: --------------------------------------------------------------------------------
 1504:   Sortie : variable globale modifiée
 1505: --------------------------------------------------------------------------------
 1506:   Effets de bord : néant
 1507: ================================================================================
 1508: */
 1509: 
 1510: // Les routines suivantes sont uniquement appelées depuis les gestionnaires
 1511: // des signaux asynchrones. Elles ne doivent pas bloquer dans le cas où
 1512: // les sémaphores sont déjà bloqués par un gestionnaire de signal.
 1513: 
 1514: static inline void
 1515: verrouillage_gestionnaire_signaux()
 1516: {
 1517:     int         semaphore;
 1518: 
 1519:     sigset_t    oldset;
 1520:     sigset_t    set;
 1521: 
 1522:     sem_t       *sem;
 1523: 
 1524:     if ((sem = pthread_getspecific(semaphore_fork_processus_courant))
 1525:             != NULL)
 1526:     {
 1527:         if (sem_post(sem) != 0)
 1528:         {
 1529:             BUG(1, uprintf("Lock error !\n"));
 1530:             return;
 1531:         }
 1532:     }
 1533: 
 1534:     // Il faut respecteur l'atomicité des deux opérations suivantes !
 1535: 
 1536:     sigfillset(&set);
 1537:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
 1538: 
 1539: #   ifndef SEMAPHORES_NOMMES
 1540:     while(sem_wait(&semaphore_gestionnaires_signaux_atomique) == -1)
 1541: #   else
 1542:     while(sem_wait(semaphore_gestionnaires_signaux_atomique) == -1)
 1543: #   endif
 1544:     {
 1545:         if (errno != EINTR)
 1546:         {
 1547:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1548:             BUG(1, uprintf("Unlock error !\n"));
 1549:             return;
 1550:         }
 1551:     }
 1552: 
 1553: #   ifndef SEMAPHORES_NOMMES
 1554:     if (sem_post(&semaphore_gestionnaires_signaux) == -1)
 1555: #   else
 1556:     if (sem_post(semaphore_gestionnaires_signaux) == -1)
 1557: #   endif
 1558:     {
 1559:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1560:         BUG(1, uprintf("Lock error !\n"));
 1561:         return;
 1562:     }
 1563: 
 1564: #   ifndef SEMAPHORES_NOMMES
 1565:     if (sem_getvalue(&semaphore_gestionnaires_signaux, &semaphore) != 0)
 1566: #   else
 1567:     if (sem_getvalue(semaphore_gestionnaires_signaux, &semaphore) != 0)
 1568: #   endif
 1569:     {
 1570:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1571:         BUG(1, uprintf("Lock error !\n"));
 1572:         return;
 1573:     }
 1574: 
 1575: #   ifndef SEMAPHORES_NOMMES
 1576:     if (sem_post(&semaphore_gestionnaires_signaux_atomique) != 0)
 1577: #   else
 1578:     if (sem_post(semaphore_gestionnaires_signaux_atomique) != 0)
 1579: #   endif
 1580:     {
 1581:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1582:         BUG(1, uprintf("Unlock error !\n"));
 1583:         return;
 1584:     }
 1585: 
 1586:     if (semaphore == 1)
 1587:     {
 1588:         // Le semaphore ne peut être pris par le thread qui a appelé
 1589:         // le gestionnaire de signal car le signal est bloqué par ce thread
 1590:         // dans les zones critiques. Ce sémaphore ne peut donc être bloqué que
 1591:         // par un thread concurrent. On essaye donc de le bloquer jusqu'à
 1592:         // ce que ce soit possible.
 1593: 
 1594: #       ifndef SEMAPHORES_NOMMES
 1595:         while(sem_trywait(&semaphore_liste_threads) == -1)
 1596: #       else
 1597:         while(sem_trywait(semaphore_liste_threads) == -1)
 1598: #       endif
 1599:         {
 1600:             if ((errno != EINTR) && (errno != EAGAIN))
 1601:             {
 1602:                 pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1603: 
 1604:                 while(sem_wait(sem) == -1)
 1605:                 {
 1606:                     if (errno != EINTR)
 1607:                     {
 1608:                         BUG(1, uprintf("Lock error !\n"));
 1609:                         return;
 1610:                     }
 1611:                 }
 1612: 
 1613:                 BUG(1, uprintf("Lock error !\n"));
 1614:                 return;
 1615:             }
 1616: 
 1617:             sched_yield();
 1618:         }
 1619:     }
 1620: 
 1621:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1622:     sigpending(&set);
 1623: 
 1624:     return;
 1625: }
 1626: 
 1627: static inline void
 1628: deverrouillage_gestionnaire_signaux()
 1629: {
 1630:     int         semaphore;
 1631: 
 1632:     sem_t       *sem;
 1633: 
 1634:     sigset_t    oldset;
 1635:     sigset_t    set;
 1636: 
 1637:     // Il faut respecteur l'atomicité des deux opérations suivantes !
 1638: 
 1639:     sigfillset(&set);
 1640:     pthread_sigmask(SIG_BLOCK, &set, &oldset);
 1641: 
 1642: #   ifndef SEMAPHORES_NOMMES
 1643:     while(sem_wait(&semaphore_gestionnaires_signaux_atomique) == -1)
 1644: #   else
 1645:     while(sem_wait(semaphore_gestionnaires_signaux_atomique) == -1)
 1646: #   endif
 1647:     {
 1648:         if (errno != EINTR)
 1649:         {
 1650:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1651:             BUG(1, uprintf("Unlock error !\n"));
 1652:             return;
 1653:         }
 1654:     }
 1655: 
 1656: #   ifndef SEMAPHORES_NOMMES
 1657:     if (sem_getvalue(&semaphore_gestionnaires_signaux, &semaphore) != 0)
 1658: #   else
 1659:     if (sem_getvalue(semaphore_gestionnaires_signaux, &semaphore) != 0)
 1660: #   endif
 1661:     {
 1662:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1663:         BUG(1, uprintf("Unlock error !\n"));
 1664:         return;
 1665:     }
 1666: 
 1667: #   ifndef SEMAPHORES_NOMMES
 1668:     while(sem_wait(&semaphore_gestionnaires_signaux) == -1)
 1669: #   else
 1670:     while(sem_wait(semaphore_gestionnaires_signaux) == -1)
 1671: #   endif
 1672:     {
 1673:         if (errno != EINTR)
 1674:         {
 1675:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1676:             BUG(1, uprintf("Unlock error !\n"));
 1677:             return;
 1678:         }
 1679:     }
 1680: 
 1681: #   ifndef SEMAPHORES_NOMMES
 1682:     if (sem_post(&semaphore_gestionnaires_signaux_atomique) != 0)
 1683: #   else
 1684:     if (sem_post(semaphore_gestionnaires_signaux_atomique) != 0)
 1685: #   endif
 1686:     {
 1687:         pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1688:         BUG(1, uprintf("Unlock error !\n"));
 1689:         return;
 1690:     }
 1691: 
 1692:     if ((sem = pthread_getspecific(semaphore_fork_processus_courant))
 1693:             != NULL)
 1694:     {
 1695:         while(sem_wait(sem) == -1)
 1696:         {
 1697:             if (errno != EINTR)
 1698:             {
 1699:                 pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1700:                 BUG(1, uprintf("Unlock error !\n"));
 1701:                 return;
 1702:             }
 1703:         }
 1704:     }
 1705: 
 1706:     if (semaphore == 1)
 1707:     {
 1708: #       ifndef SEMAPHORES_NOMMES
 1709:         if (sem_post(&semaphore_liste_threads) != 0)
 1710: #       else
 1711:         if (sem_post(semaphore_liste_threads) != 0)
 1712: #       endif
 1713:         {
 1714:             pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1715: 
 1716:             BUG(1, uprintf("Unlock error !\n"));
 1717:             return;
 1718:         }
 1719:     }
 1720: 
 1721:     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 1722:     sigpending(&set);
 1723: 
 1724:     return;
 1725: }
 1726: 
 1727: #ifdef _BROKEN_SIGINFO
 1728: 
 1729: static int              *fifos;
 1730: static int              segment;
 1731: static int              segment_mutexes;
 1732: static int              longueur_queue;
 1733: static int              nombre_queues;
 1734: 
 1735: static pthread_mutex_t  *mutexes;
 1736: 
 1737: static unsigned char    *chemin = NULL;
 1738: 
 1739: unsigned char *
 1740: nom_segment(unsigned char *chemin, pid_t pid)
 1741: {
 1742:     unsigned char               *fichier;
 1743: 
 1744:     if ((fichier = malloc((strlen(chemin) + 1 + 256 + 1) *
 1745:             sizeof(unsigned char))) == NULL)
 1746:     {
 1747:         return(NULL);
 1748:     }
 1749: 
 1750:     sprintf(fichier, "%s/RPL-SIGQUEUES-%d", chemin, (int) pid);
 1751: 
 1752:     return(fichier);
 1753: }
 1754: 
 1755: unsigned char *
 1756: nom_segment_mutexes(unsigned char *chemin, pid_t pid)
 1757: {
 1758:     unsigned char               *fichier;
 1759: 
 1760:     if ((fichier = malloc((strlen(chemin) + 1 + 256 + 1) *
 1761:             sizeof(unsigned char))) == NULL)
 1762:     {
 1763:         return(NULL);
 1764:     }
 1765: 
 1766:     sprintf(fichier, "%s/RPL-SIGMUTEXES-%d", chemin, (int) pid);
 1767: 
 1768:     return(fichier);
 1769: }
 1770: 
 1771: int
 1772: queue_de_signal(int signal)
 1773: {
 1774:     switch(signal)
 1775:     {
 1776:         case SIGINT:
 1777:             return(0);
 1778:         case SIGTSTP:
 1779:             return(1);
 1780:         case SIGCONT:
 1781:             return(2);
 1782:         case SIGURG:
 1783:             return(3);
 1784:         case SIGPIPE:
 1785:             return(4);
 1786:         case SIGALRM:
 1787:             return(5);
 1788:         case SIGFSTOP:
 1789:             return(6);
 1790:         case SIGSTART:
 1791:             return(7);
 1792:         case SIGINJECT:
 1793:             return(8);
 1794:         case SIGABORT:
 1795:             return(9);
 1796:         case SIGFABORT:
 1797:             return(10);
 1798:     }
 1799: 
 1800:     return(-1);
 1801: }
 1802: 
 1803: void
 1804: creation_fifos_signaux(struct_processus *s_etat_processus)
 1805: {
 1806:     file                            *desc;
 1807: 
 1808:     int                             i;
 1809: 
 1810:     key_t                           clef;
 1811: 
 1812:     pthread_mutexattr_t             attributs_mutex;
 1813: 
 1814:     unsigned char                   *nom;
 1815: 
 1816:     /*
 1817:      * Signaux utilisés
 1818:      * SIGINT, SIGTSTP, SIGCONT, SIGURG, SIGPIPE, SIGALRM, SIGFSTOP,
 1819:      * SIGSTART, SIGINJECT, SIGABORT, SIGFABORT
 1820:      */
 1821: 
 1822:     // Création d'un segment de données associé au PID du processus courant
 1823: 
 1824:     chemin = (*s_etat_processus).chemin_fichiers_temporaires;
 1825: 
 1826:     if ((nom = nom_segment((*s_etat_processus).chemin_fichiers_temporaires,
 1827:             getpid())) == NULL)
 1828:     {
 1829:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1830:         return;
 1831:     }
 1832: 
 1833:     /*
 1834:      * Structure d'une queue
 1835:      * 0 : pointeur en lecture sur le premier emplacement libre (int)
 1836:      * 1 : pointeur en écriture sur le premier emplacement à lire (int)
 1837:      * 2 : longueur de la queue (int)
 1838:      * 3 : éléments restants (int)
 1839:      * 4 à 4 + (2) : queue (int)
 1840:      * 5 : mutex
 1841:      */
 1842: 
 1843:     nombre_queues = 11;
 1844:     longueur_queue = 256;
 1845: 
 1846:     if ((desc = fopen(nom, "w")) == NULL)
 1847:     {
 1848:         (*s_etat_processus).erreur_systeme = d_es_erreur_fichier;
 1849:         return;
 1850:     }
 1851: 
 1852:     fclose(desc);
 1853: 
 1854:     if ((clef = ftok(nom, 1)) == -1)
 1855:     {
 1856:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1857:         return;
 1858:     }
 1859: 
 1860:     free(nom);
 1861: 
 1862:     if ((segment = shmget(clef,
 1863:             nombre_queues * (longueur_queue + 4) * sizeof(int),
 1864:             IPC_CREAT | IPC_EXCL | S_IRUSR | S_IWUSR)) == -1)
 1865:     {
 1866:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1867:         return;
 1868:     }
 1869: 
 1870:     fifos = shmat(segment, NULL, 0);
 1871: 
 1872:     if (((void *) fifos) == ((void *) -1))
 1873:     {
 1874:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1875:         return;
 1876:     }
 1877: 
 1878:     for(i = 0; i < nombre_queues; i++)
 1879:     {
 1880:         fifos[(i * (longueur_queue + 4))] = 0;
 1881:         fifos[(i * (longueur_queue + 4)) + 1] = 0;
 1882:         fifos[(i * (longueur_queue + 4)) + 2] = longueur_queue;
 1883:         fifos[(i * (longueur_queue + 4)) + 3] = longueur_queue;
 1884:     }
 1885: 
 1886:     if ((nom = nom_segment_mutexes((*s_etat_processus)
 1887:             .chemin_fichiers_temporaires, getpid())) == NULL)
 1888:     {
 1889:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1890:         return;
 1891:     }
 1892: 
 1893:     if ((desc = fopen(nom, "w")) == NULL)
 1894:     {
 1895:         (*s_etat_processus).erreur_systeme = d_es_erreur_fichier;
 1896:         return;
 1897:     }
 1898: 
 1899:     fclose(desc);
 1900: 
 1901:     if ((clef = ftok(nom, 1)) == -1)
 1902:     {
 1903:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1904:         return;
 1905:     }
 1906: 
 1907:     free(nom);
 1908: 
 1909:     if ((segment_mutexes = shmget(clef,
 1910:             nombre_queues * sizeof(pthread_mutex_t),
 1911:             IPC_CREAT | IPC_EXCL | S_IRUSR | S_IWUSR)) == -1)
 1912:     {
 1913:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1914:         return;
 1915:     }
 1916: 
 1917:     mutexes = shmat(segment_mutexes, NULL, 0);
 1918: 
 1919:     if (((void *) mutexes) == ((void *) -1))
 1920:     {
 1921:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1922:         return;
 1923:     }
 1924: 
 1925:     /*
 1926:      * Création et initialisation d'un mutex par queue. Ce mutex n'est pas
 1927:      * dans le premier segment parce qu'il peut y avoir des problèmes
 1928:      * d'alignements sur certaines architectures.
 1929:      */
 1930: 
 1931:     pthread_mutexattr_init(&attributs_mutex);
 1932:     pthread_mutexattr_settype(&attributs_mutex, PTHREAD_MUTEX_NORMAL);
 1933: 
 1934:     for(i = 0; i < nombre_queues; i++)
 1935:     {
 1936:         pthread_mutex_init(&(mutexes[i]), &attributs_mutex);
 1937:     }
 1938: 
 1939:     pthread_mutexattr_destroy(&attributs_mutex);
 1940:     return;
 1941: }
 1942: 
 1943: void
 1944: liberation_fifos_signaux(struct_processus *s_etat_processus)
 1945: {
 1946:     if (shmdt(fifos) == -1)
 1947:     {
 1948:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1949:         return;
 1950:     }
 1951: 
 1952:     if (shmdt(mutexes) == -1)
 1953:     {
 1954:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1955:         return;
 1956:     }
 1957: 
 1958:     return;
 1959: }
 1960: 
 1961: void
 1962: destruction_fifos_signaux(struct_processus *s_etat_processus)
 1963: {
 1964:     int                 i;
 1965:     unsigned char       *nom;
 1966: 
 1967:     if (shmdt(fifos) == -1)
 1968:     {
 1969:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1970:         return;
 1971:     }
 1972: 
 1973:     if (shmctl(segment, IPC_RMID, 0) == -1)
 1974:     {
 1975:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1976:         return;
 1977:     }
 1978: 
 1979:     for(i = 0; i < nombre_queues; i++)
 1980:     {
 1981:         pthread_mutex_destroy(&(mutexes[i]));
 1982:     }
 1983: 
 1984:     if (shmdt(mutexes) == -1)
 1985:     {
 1986:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1987:         return;
 1988:     }
 1989: 
 1990:     if (shmctl(segment_mutexes, IPC_RMID, 0) == -1)
 1991:     {
 1992:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1993:         return;
 1994:     }
 1995: 
 1996:     if ((nom = nom_segment_mutexes((*s_etat_processus)
 1997:             .chemin_fichiers_temporaires, getpid())) == NULL)
 1998:     {
 1999:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 2000:         return;
 2001:     }
 2002: 
 2003:     unlink(nom);
 2004:     free(nom);
 2005: 
 2006:     if ((nom = nom_segment((*s_etat_processus).chemin_fichiers_temporaires,
 2007:             getpid())) == NULL)
 2008:     {
 2009:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 2010:         return;
 2011:     }
 2012: 
 2013:     unlink(nom);
 2014:     free(nom);
 2015: 
 2016:     return;
 2017: }
 2018: 
 2019: int
 2020: queue_in(pid_t pid, int signal)
 2021: {
 2022:     int             *base;
 2023:     int             *buffer;
 2024:     int             *projection_fifos;
 2025:     int             queue;
 2026:     int             identifiant;
 2027: 
 2028:     key_t           clef;
 2029: 
 2030:     pthread_mutex_t *projection_mutexes;
 2031: 
 2032:     unsigned char   *nom;
 2033: 
 2034:     queue = queue_de_signal(signal);
 2035: 
 2036:     // Ouverture des projections
 2037: 
 2038:     if ((nom = nom_segment(chemin, pid)) == NULL)
 2039:     {
 2040:         return(-1);
 2041:     }
 2042: 
 2043:     if ((clef = ftok(nom, 1)) == -1)
 2044:     {
 2045:         free(nom);
 2046:         return(-1);
 2047:     }
 2048: 
 2049:     free(nom);
 2050: 
 2051:     while((identifiant = shmget(clef,
 2052:             nombre_queues * (longueur_queue + 4) * sizeof(int),
 2053:             S_IRUSR | S_IWUSR)) == -1);
 2054: 
 2055:     projection_fifos = shmat(identifiant, NULL, 0);
 2056: 
 2057:     if ((nom = nom_segment_mutexes(chemin, pid)) == NULL)
 2058:     {
 2059:         return(-1);
 2060:     }
 2061: 
 2062:     if ((clef = ftok(nom, 1)) == -1)
 2063:     {
 2064:         free(nom);
 2065:         return(-1);
 2066:     }
 2067: 
 2068:     free(nom);
 2069: 
 2070:     while((identifiant = shmget(clef,
 2071:             nombre_queues * sizeof(pthread_mutex_t),
 2072:             S_IRUSR | S_IWUSR)) == -1);
 2073: 
 2074:     projection_mutexes = shmat(identifiant, NULL, 0);
 2075: 
 2076:     if (pthread_mutex_lock(&(projection_mutexes[queue])) != 0)
 2077:     {
 2078:         return(-1);
 2079:     }
 2080: 
 2081:     base = &(projection_fifos[(longueur_queue + 4) * queue]);
 2082:     buffer = &(base[4]);
 2083: 
 2084:     // base[1] contient le prochain élément à écrire
 2085:     buffer[base[1]++] = (int) pid;
 2086:     base[1] %= base[2];
 2087: 
 2088:     // base[3] contient le nombre d'éléments non lus
 2089:     if (base[3] <= 0)
 2090:     {
 2091:         pthread_mutex_unlock(&(projection_mutexes[queue]));
 2092:         shmdt(projection_mutexes);
 2093:         shmdt(projection_fifos);
 2094:         return(-1);
 2095:     }
 2096: 
 2097:     base[3]--;
 2098: 
 2099:     if (pthread_mutex_unlock(&(projection_mutexes[queue])) != 0)
 2100:     {
 2101:         shmdt(projection_mutexes);
 2102:         shmdt(projection_fifos);
 2103:         return(-1);
 2104:     }
 2105: 
 2106:     // Fermeture des projections
 2107:     shmdt(projection_mutexes);
 2108:     shmdt(projection_fifos);
 2109:     return(0);
 2110: }
 2111: 
 2112: pid_t
 2113: origine_signal(int signal)
 2114: {
 2115:     int             *base;
 2116:     int             *buffer;
 2117:     int             pid;
 2118:     int             queue;
 2119: 
 2120:     queue = queue_de_signal(signal);
 2121: 
 2122:     BUG(queue == -1, uprintf("[%d] Unknown signal %d in this context\n",
 2123:             (int) getpid(), signal));
 2124: 
 2125:     if (pthread_mutex_lock(&(mutexes[queue])) != 0)
 2126:     {
 2127:         perror("lock");
 2128:         return(-1);
 2129:     }
 2130: 
 2131:     base = &(fifos[(longueur_queue + 4) * queue]);
 2132:     buffer = &(base[4]);
 2133:     pid = buffer[base[0]++];
 2134:     base[0] %= base[2];
 2135:     base[3]++;
 2136: 
 2137:     if (base[3] > base[2])
 2138:     {
 2139:         uprintf("Base\n");
 2140:         pthread_mutex_unlock(&(mutexes[queue]));
 2141:         return(-1);
 2142:     }
 2143:     if (pthread_mutex_unlock(&(mutexes[queue])) != 0)
 2144:     {
 2145:         perror("unlock");
 2146:         return(-1);
 2147:     }
 2148: 
 2149:     return((pid_t) pid);
 2150: }
 2151: 
 2152: #endif
 2153: 
 2154: void
 2155: interruption1(SIGHANDLER_ARGS)
 2156: {
 2157:     pid_t                   pid;
 2158: 
 2159:     pthread_t               thread;
 2160: 
 2161:     struct_processus        *s_etat_processus;
 2162: 
 2163:     volatile sig_atomic_t   exclusion = 0;
 2164: 
 2165: #   ifdef _BROKEN_SIGINFO
 2166:     pid = origine_signal(signal);
 2167: #   else
 2168:     pid = (*siginfo).si_pid;
 2169: #   endif
 2170: 
 2171:     verrouillage_gestionnaire_signaux();
 2172: 
 2173:     switch(signal)
 2174:     {
 2175:         case SIGALRM :
 2176:         {
 2177:             if (pid == getpid())
 2178:             {
 2179:                 if ((s_etat_processus = recherche_thread(getpid(),
 2180:                         pthread_self())) == NULL)
 2181:                 {
 2182:                     deverrouillage_gestionnaire_signaux();
 2183:                      return;
 2184:                 }
 2185: 
 2186:                 if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2187:                 {
 2188:                     printf("[%d] SIGALRM (thread %llu)\n", (int) getpid(),
 2189:                             (unsigned long long) pthread_self());
 2190:                     fflush(stdout);
 2191:                 }
 2192: 
 2193:                 if ((*s_etat_processus).pid_processus_pere != getpid())
 2194:                 {
 2195:                     kill((*s_etat_processus).pid_processus_pere, signal);
 2196:                 }
 2197:                 else
 2198:                 {
 2199:                     (*s_etat_processus).var_volatile_alarme = -1;
 2200:                     (*s_etat_processus).var_volatile_requete_arret = -1;
 2201:                 }
 2202:             }
 2203:             else
 2204:             {
 2205:                 if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2206:                 {
 2207:                     pthread_kill(thread, signal);
 2208:                 }
 2209:             }
 2210: 
 2211:             break;
 2212:         }
 2213: 
 2214:         case SIGINT :
 2215:         {
 2216:             /*
 2217:              * Une vieille spécification POSIX permet au pointeur siginfo
 2218:              * d'être nul dans le cas d'un ^C envoyé depuis le clavier.
 2219:              * Solaris suit en particulier cette spécification.
 2220:              */
 2221: 
 2222: #           ifndef _BROKEN_SIGINFO
 2223:             if (siginfo == NULL)
 2224:             {
 2225:                 kill(getpid(), signal);
 2226:             }
 2227:             else
 2228: #           endif
 2229:             if (pid == getpid())
 2230:             {
 2231:                 if ((s_etat_processus = recherche_thread(getpid(),
 2232:                         pthread_self())) == NULL)
 2233:                 {
 2234:                     deverrouillage_gestionnaire_signaux();
 2235:                     return;
 2236:                 }
 2237: 
 2238:                 if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2239:                 {
 2240:                     printf("[%d] SIGINT (thread %llu)\n", (int) getpid(),
 2241:                             (unsigned long long) pthread_self());
 2242:                     fflush(stdout);
 2243:                 }
 2244: 
 2245:                 if ((*s_etat_processus).pid_processus_pere != getpid())
 2246:                 {
 2247:                     kill((*s_etat_processus).pid_processus_pere, signal);
 2248:                 }
 2249:                 else
 2250:                 {
 2251:                     (*s_etat_processus).var_volatile_traitement_sigint = -1;
 2252: 
 2253:                     while(exclusion == 1);
 2254:                     exclusion = 1;
 2255: 
 2256:                     if ((*s_etat_processus).var_volatile_requete_arret == -1)
 2257:                     {
 2258:                         deverrouillage_gestionnaire_signaux();
 2259:                         exclusion = 0;
 2260:                         return;
 2261:                     }
 2262: 
 2263:                     if (strncmp(getenv("LANG"), "fr", 2) == 0)
 2264:                     {
 2265:                         printf("+++Interruption\n");
 2266:                     }
 2267:                     else
 2268:                     {
 2269:                         printf("+++Interrupt\n");
 2270:                     }
 2271: 
 2272:                     fflush(stdout);
 2273: 
 2274:                     (*s_etat_processus).var_volatile_requete_arret = -1;
 2275:                     (*s_etat_processus).var_volatile_alarme = -1;
 2276: 
 2277:                     exclusion = 0;
 2278:                 }
 2279:             }
 2280:             else
 2281:             {
 2282:                 if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2283:                 {
 2284:                     pthread_kill(thread, signal);
 2285:                 }
 2286:             }
 2287: 
 2288:             break;
 2289:         }
 2290: 
 2291:         default :
 2292:         {
 2293:             BUG(1, uprintf("[%d] Unknown signal %d in this context\n",
 2294:                     (int) getpid(), signal));
 2295:             break;
 2296:         }
 2297:     }
 2298: 
 2299:     deverrouillage_gestionnaire_signaux();
 2300:     return;
 2301: }
 2302: 
 2303: void
 2304: interruption2(SIGHANDLER_ARGS)
 2305: {
 2306:     pid_t                   pid;
 2307: 
 2308:     pthread_t               thread;
 2309: 
 2310:     struct_processus        *s_etat_processus;
 2311: 
 2312: #   ifdef _BROKEN_SIGINFO
 2313:     pid = origine_signal(signal);
 2314: #   else
 2315:     pid = (*siginfo).si_pid;
 2316: #   endif
 2317: 
 2318:     verrouillage_gestionnaire_signaux();
 2319: 
 2320: #   ifndef _BROKEN_SIGINFO
 2321:     if (siginfo == NULL)
 2322:     {
 2323:         /*
 2324:          * Le signal SIGFSTP provient de la mort du processus de contrôle.
 2325:          * Sous certains systèmes (Linux...), la mort du terminal de contrôle
 2326:          * se traduit par l'envoi d'un SIGHUP au processus. Sur d'autres
 2327:          * (SunOS), le processus reçoit un SIGFSTP avec une structure siginfo
 2328:          * non initialisée (pointeur NULL) issue de TERMIO.
 2329:          */
 2330: 
 2331:         if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2332:         {
 2333:             pthread_kill(thread, SIGHUP);
 2334:             deverrouillage_gestionnaire_signaux();
 2335:             return;
 2336:         }
 2337:     }
 2338:     else
 2339: #   endif
 2340:     if (pid == getpid())
 2341:     {
 2342:         if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
 2343:                 == NULL)
 2344:         {
 2345:             deverrouillage_gestionnaire_signaux();
 2346:             return;
 2347:         }
 2348: 
 2349:         /*
 2350:          *  0 => fonctionnement normal
 2351:          * -1 => requête
 2352:          *  1 => requête acceptée en attente de traitement
 2353:          */
 2354: 
 2355:         if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2356:         {
 2357:             printf("[%d] SIGTSTP (thread %llu)\n", (int) getpid(),
 2358:                     (unsigned long long) pthread_self());
 2359:             fflush(stdout);
 2360:         }
 2361: 
 2362:         if ((*s_etat_processus).var_volatile_processus_pere == 0)
 2363:         {
 2364:             kill((*s_etat_processus).pid_processus_pere, signal);
 2365:         }
 2366:         else
 2367:         {
 2368:             (*s_etat_processus).var_volatile_requete_arret2 = -1;
 2369:         }
 2370:     }
 2371:     else
 2372:     {
 2373:         // Envoi d'un signal au thread maître du groupe.
 2374: 
 2375:         if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2376:         {
 2377:             pthread_kill(thread, SIGTSTP);
 2378:             deverrouillage_gestionnaire_signaux();
 2379:             return;
 2380:         }
 2381:     }
 2382: 
 2383:     deverrouillage_gestionnaire_signaux();
 2384:     return;
 2385: }
 2386: 
 2387: void
 2388: interruption3(SIGHANDLER_ARGS)
 2389: {
 2390:     pid_t                   pid;
 2391: 
 2392:     struct_processus        *s_etat_processus;
 2393: 
 2394:     static int              compteur = 0;
 2395: 
 2396: #   ifdef _BROKEN_SIGINFO
 2397:     pid = origine_signal(signal);
 2398: #   else
 2399:     pid = (*siginfo).si_pid;
 2400: #   endif
 2401: 
 2402:     verrouillage_gestionnaire_signaux();
 2403: 
 2404:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2405:     {
 2406:         deverrouillage_gestionnaire_signaux();
 2407:         return;
 2408:     }
 2409: 
 2410:     if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2411:     {
 2412:         printf("[%d] SIGSEGV (thread %llu)\n", (int) getpid(),
 2413:                 (unsigned long long) pthread_self());
 2414:         fflush(stdout);
 2415:     }
 2416: 
 2417:     if ((*s_etat_processus).var_volatile_recursivite == -1)
 2418:     {
 2419:         // Segfault dans un appel de fonction récursive
 2420:         deverrouillage_gestionnaire_signaux();
 2421:         longjmp(contexte, -1);
 2422:     }
 2423:     else
 2424:     {
 2425:         // Segfault dans une routine interne
 2426:         if (strncmp(getenv("LANG"), "fr", 2) == 0)
 2427:         {
 2428:             printf("+++Système : Violation d'accès (dépassement de pile)\n");
 2429:         }
 2430:         else
 2431:         {
 2432:             printf("+++System : Access violation (stack overflow)\n");
 2433:         }
 2434: 
 2435:         fflush(stdout);
 2436: 
 2437:         compteur++;
 2438: 
 2439:         if (compteur > 1)
 2440:         {
 2441:             deverrouillage_gestionnaire_signaux();
 2442:             exit(EXIT_FAILURE);
 2443:         }
 2444:         else
 2445:         {
 2446:             deverrouillage_gestionnaire_signaux();
 2447:             longjmp(contexte_initial, -1);
 2448:         }
 2449:     }
 2450: 
 2451:     deverrouillage_gestionnaire_signaux();
 2452:     return;
 2453: }
 2454: 
 2455: void
 2456: interruption4(SIGHANDLER_ARGS)
 2457: {
 2458:     pid_t                   pid;
 2459: 
 2460:     struct_processus        *s_etat_processus;
 2461: 
 2462: #   ifdef _BROKEN_SIGINFO
 2463:     pid = origine_signal(signal);
 2464: #   else
 2465:     pid = (*siginfo).si_pid;
 2466: #   endif
 2467: 
 2468:     verrouillage_gestionnaire_signaux();
 2469: 
 2470:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2471:     {
 2472:         deverrouillage_gestionnaire_signaux();
 2473:         return;
 2474:     }
 2475: 
 2476:     /*
 2477:      * Démarrage d'un processus fils ou gestion de SIGCONT (SUSPEND)
 2478:      */
 2479: 
 2480:     if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2481:     {
 2482:         printf("[%d] SIGSTART/SIGCONT (thread %llu)\n", (int) getpid(),
 2483:                 (unsigned long long) pthread_self());
 2484:         fflush(stdout);
 2485:     }
 2486: 
 2487:     deverrouillage_gestionnaire_signaux();
 2488:     return;
 2489: }
 2490: 
 2491: void
 2492: interruption5(SIGHANDLER_ARGS)
 2493: {
 2494:     pid_t                   pid;
 2495: 
 2496:     pthread_t               thread;
 2497: 
 2498:     struct_processus        *s_etat_processus;
 2499: 
 2500: #   ifdef _BROKEN_SIGINFO
 2501:     pid = origine_signal(signal);
 2502: #   else
 2503:     pid = (*siginfo).si_pid;
 2504: #   endif
 2505: 
 2506:     verrouillage_gestionnaire_signaux();
 2507: 
 2508:     if (pid == getpid())
 2509:     {
 2510:         if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
 2511:                 == NULL)
 2512:         {
 2513:             deverrouillage_gestionnaire_signaux();
 2514:             return;
 2515:         }
 2516: 
 2517:         if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2518:         {
 2519:             printf("[%d] SIGFSTOP (thread %llu)\n", (int) getpid(),
 2520:                     (unsigned long long) pthread_self());
 2521:             fflush(stdout);
 2522:         }
 2523: 
 2524:         /*
 2525:          * var_globale_traitement_retarde_stop :
 2526:          *  0 -> traitement immédiat
 2527:          *  1 -> traitement retardé (aucun signal reçu)
 2528:          * -1 -> traitement retardé (un ou plusieurs signaux stop reçus)
 2529:          */
 2530: 
 2531:         if ((*s_etat_processus).var_volatile_traitement_retarde_stop == 0)
 2532:         {
 2533:             (*s_etat_processus).var_volatile_requete_arret = -1;
 2534:         }
 2535:         else
 2536:         {
 2537:             (*s_etat_processus).var_volatile_traitement_retarde_stop = -1;
 2538:         }
 2539:     }
 2540:     else
 2541:     {
 2542:         if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
 2543:                 == NULL)
 2544:         {
 2545:             deverrouillage_gestionnaire_signaux();
 2546:             return;
 2547:         }
 2548: 
 2549:         // Envoi d'un signal au thread maître du groupe.
 2550: 
 2551:         if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2552:         {
 2553:             pthread_kill(thread, signal);
 2554:             deverrouillage_gestionnaire_signaux();
 2555:             return;
 2556:         }
 2557:     }
 2558: 
 2559:     deverrouillage_gestionnaire_signaux();
 2560:     return;
 2561: }
 2562: 
 2563: void
 2564: interruption6(SIGHANDLER_ARGS)
 2565: {
 2566:     pid_t                   pid;
 2567: 
 2568:     struct_processus        *s_etat_processus;
 2569: 
 2570: #   ifdef _BROKEN_SIGINFO
 2571:     pid = origine_signal(signal);
 2572: #   else
 2573:     pid = (*siginfo).si_pid;
 2574: #   endif
 2575: 
 2576:     verrouillage_gestionnaire_signaux();
 2577: 
 2578:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2579:     {
 2580:         deverrouillage_gestionnaire_signaux();
 2581:         return;
 2582:     }
 2583: 
 2584:     if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2585:     {
 2586:         printf("[%d] SIGINJECT/SIGQUIT (thread %llu)\n", (int) getpid(),
 2587:                 (unsigned long long) pthread_self());
 2588:         fflush(stdout);
 2589:     }
 2590: 
 2591:     deverrouillage_gestionnaire_signaux();
 2592:     return;
 2593: }
 2594: 
 2595: void
 2596: interruption7(SIGHANDLER_ARGS)
 2597: {
 2598:     pid_t                   pid;
 2599: 
 2600:     struct_processus        *s_etat_processus;
 2601: 
 2602: #   ifdef _BROKEN_SIGINFO
 2603:     pid = origine_signal(signal);
 2604: #   else
 2605:     pid = (*siginfo).si_pid;
 2606: #   endif
 2607: 
 2608:     verrouillage_gestionnaire_signaux();
 2609: 
 2610:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2611:     {
 2612:         deverrouillage_gestionnaire_signaux();
 2613:         return;
 2614:     }
 2615: 
 2616:     if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2617:     {
 2618:         printf("[%d] SIGPIPE (thread %llu)\n", (int) getpid(),
 2619:                 (unsigned long long) pthread_self());
 2620:         fflush(stdout);
 2621:     }
 2622: 
 2623:     (*s_etat_processus).var_volatile_requete_arret = -1;
 2624:     deverrouillage_gestionnaire_signaux();
 2625: 
 2626:     BUG(1, printf("[%d] SIGPIPE\n", (int) getpid()));
 2627:     return;
 2628: }
 2629: 
 2630: void
 2631: interruption8(SIGHANDLER_ARGS)
 2632: {
 2633:     pid_t                   pid;
 2634: 
 2635:     pthread_t               thread;
 2636: 
 2637:     struct_processus        *s_etat_processus;
 2638: 
 2639: #   ifdef _BROKEN_SIGINFO
 2640:     pid = origine_signal(signal);
 2641: #   else
 2642:     pid = (*siginfo).si_pid;
 2643: #   endif
 2644: 
 2645:     verrouillage_gestionnaire_signaux();
 2646: 
 2647:     if (pid == getpid())
 2648:     {
 2649:         if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
 2650:                 == NULL)
 2651:         {
 2652:             deverrouillage_gestionnaire_signaux();
 2653:             return;
 2654:         }
 2655: 
 2656:         if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2657:         {
 2658:             printf("[%d] SIGURG (thread %llu)\n", (int) getpid(),
 2659:                     (unsigned long long) pthread_self());
 2660:             fflush(stdout);
 2661:         }
 2662: 
 2663:         (*s_etat_processus).var_volatile_alarme = -1;
 2664:         (*s_etat_processus).var_volatile_requete_arret = -1;
 2665:     }
 2666:     else
 2667:     {
 2668:         // Envoi d'un signal au thread maître du groupe.
 2669: 
 2670:         if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2671:         {
 2672:             pthread_kill(thread, SIGURG);
 2673:             deverrouillage_gestionnaire_signaux();
 2674:             return;
 2675:         }
 2676:     }
 2677: 
 2678:     deverrouillage_gestionnaire_signaux();
 2679:     return;
 2680: }
 2681: 
 2682: void
 2683: interruption9(SIGHANDLER_ARGS)
 2684: {
 2685:     pid_t                   pid;
 2686: 
 2687:     struct_processus        *s_etat_processus;
 2688: 
 2689: #   ifdef _BROKEN_SIGINFO
 2690:     pid = origine_signal(signal);
 2691: #   else
 2692:     pid = (*siginfo).si_pid;
 2693: #   endif
 2694: 
 2695:     verrouillage_gestionnaire_signaux();
 2696: 
 2697:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2698:     {
 2699:         deverrouillage_gestionnaire_signaux();
 2700:         return;
 2701:     }
 2702: 
 2703:     if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2704:     {
 2705:         printf("[%d] SIGABORT/SIGPROF (thread %llu)\n", (int) getpid(),
 2706:                 (unsigned long long) pthread_self());
 2707:         fflush(stdout);
 2708:     }
 2709: 
 2710:     deverrouillage_gestionnaire_signaux();
 2711: 
 2712: #   ifdef _BROKEN_SIGINFO
 2713:     if (queue_in(getpid(), signal) != 0)
 2714:     {
 2715:         return;
 2716:     }
 2717: 
 2718:     interruption11(signal);
 2719: #   else
 2720:     interruption11(signal, siginfo, context);
 2721: #   endif
 2722:     return;
 2723: }
 2724: 
 2725: void
 2726: interruption10(SIGHANDLER_ARGS)
 2727: {
 2728:     file                    *fichier;
 2729: 
 2730:     pid_t                   pid;
 2731: 
 2732:     struct_processus        *s_etat_processus;
 2733: 
 2734:     unsigned char           nom[8 + 64 + 1];
 2735: 
 2736: #   ifdef _BROKEN_SIGINFO
 2737:     pid = origine_signal(signal);
 2738: #   else
 2739:     pid = (*siginfo).si_pid;
 2740: #   endif
 2741: 
 2742:     verrouillage_gestionnaire_signaux();
 2743: 
 2744:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2745:     {
 2746:         deverrouillage_gestionnaire_signaux();
 2747:         return;
 2748:     }
 2749: 
 2750:     snprintf(nom, 8 + 64 + 1, "rpl-out-%lu-%lu", (unsigned long) getpid(),
 2751:             (unsigned long) pthread_self());
 2752: 
 2753:     if ((fichier = fopen(nom, "w+")) != NULL)
 2754:     {
 2755:         fclose(fichier);
 2756: 
 2757:         freopen(nom, "w", stdout);
 2758:         freopen(nom, "w", stderr);
 2759:     }
 2760: 
 2761:     freopen("/dev/null", "r", stdin);
 2762: 
 2763:     if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2764:     {
 2765:         printf("[%d] SIGHUP (thread %llu)\n", (int) getpid(),
 2766:                 (unsigned long long) pthread_self());
 2767:         fflush(stdout);
 2768:     }
 2769: 
 2770:     deverrouillage_gestionnaire_signaux();
 2771:     return;
 2772: }
 2773: 
 2774: void
 2775: interruption11(SIGHANDLER_ARGS)
 2776: {
 2777:     pid_t                   pid;
 2778: 
 2779:     pthread_t               thread;
 2780: 
 2781:     struct_processus        *s_etat_processus;
 2782: 
 2783: #   ifdef _BROKEN_SIGINFO
 2784:     pid = origine_signal(signal);
 2785: #   else
 2786:     pid = (*siginfo).si_pid;
 2787: #   endif
 2788: 
 2789:     verrouillage_gestionnaire_signaux();
 2790: 
 2791:     if (pid == getpid())
 2792:     {
 2793:         if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
 2794:                 == NULL)
 2795:         {
 2796:             deverrouillage_gestionnaire_signaux();
 2797:             return;
 2798:         }
 2799: 
 2800:         (*s_etat_processus).arret_depuis_abort = -1;
 2801: 
 2802:         if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
 2803:         {
 2804:             printf("[%d] SIGFABORT (thread %llu)\n", (int) getpid(),
 2805:                     (unsigned long long) pthread_self());
 2806:             fflush(stdout);
 2807:         }
 2808: 
 2809:         /*
 2810:          * var_globale_traitement_retarde_stop :
 2811:          *  0 -> traitement immédiat
 2812:          *  1 -> traitement retardé (aucun signal reçu)
 2813:          * -1 -> traitement retardé (un ou plusieurs signaux stop reçus)
 2814:          */
 2815: 
 2816:         if ((*s_etat_processus).var_volatile_traitement_retarde_stop == 0)
 2817:         {
 2818:             (*s_etat_processus).var_volatile_requete_arret = -1;
 2819:         }
 2820:         else
 2821:         {
 2822:             (*s_etat_processus).var_volatile_traitement_retarde_stop = -1;
 2823:         }
 2824:     }
 2825:     else
 2826:     {
 2827:         if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
 2828:                 == NULL)
 2829:         {
 2830:             deverrouillage_gestionnaire_signaux();
 2831:             return;
 2832:         }
 2833: 
 2834:         (*s_etat_processus).arret_depuis_abort = -1;
 2835: 
 2836:         // Envoi d'un signal au thread maître du groupe.
 2837: 
 2838:         if (recherche_thread_principal(getpid(), &thread) == d_vrai)
 2839:         {
 2840:             pthread_kill(thread, signal);
 2841:             deverrouillage_gestionnaire_signaux();
 2842:             return;
 2843:         }
 2844:     }
 2845: 
 2846:     deverrouillage_gestionnaire_signaux();
 2847:     return;
 2848: }
 2849: 
 2850: void
 2851: traitement_exceptions_gsl(const char *reason, const char *file,
 2852:         int line, int gsl_errno)
 2853: {
 2854:     struct_processus        *s_etat_processus;
 2855: 
 2856:     verrouillage_gestionnaire_signaux();
 2857: 
 2858:     if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
 2859:     {
 2860:         deverrouillage_gestionnaire_signaux();
 2861:         return;
 2862:     }
 2863: 
 2864:     (*s_etat_processus).var_volatile_exception_gsl = gsl_errno;
 2865:     deverrouillage_gestionnaire_signaux();
 2866:     return;
 2867: }
 2868: 
 2869: #ifdef _BROKEN_SIGINFO
 2870: 
 2871: #undef kill
 2872: #undef pthread_kill
 2873: 
 2874: int
 2875: rpl_kill(pid_t pid, int signal)
 2876: {
 2877:     /*
 2878:      * Lorsqu'on veut interrompre le processus pid, on ouvre le segment
 2879:      * correspondant au processus en question et ou ajoute le pid dans la
 2880:      * queue.
 2881:      */
 2882: 
 2883:     if (signal != 0)
 2884:     {
 2885:         if (queue_in(pid, signal) != 0)
 2886:         {
 2887:             return(-1);
 2888:         }
 2889:     }
 2890: 
 2891:     return(kill(pid, signal));
 2892: }
 2893: 
 2894: int
 2895: rpl_pthread_kill(pthread_t tid, int signal)
 2896: {
 2897:     if (signal != 0)
 2898:     {
 2899:         if (queue_in(getpid(), signal) != 0)
 2900:         {
 2901:             return(-1);
 2902:         }
 2903:     }
 2904: 
 2905:     return(pthread_kill(tid, signal));
 2906: }
 2907: 
 2908: #endif
 2909: 
 2910: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>