Annotation of rpl/src/interruptions.c, revision 1.31

1.1       bertrand    1: /*
                      2: ================================================================================
1.26      bertrand    3:   RPL/2 (R) version 4.0.18
1.1       bertrand    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: 
1.27      bertrand   23: #include "rpl-conv.h"
1.1       bertrand   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: 
1.13      bertrand  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;
1.1       bertrand  128:    liste_threads = l_nouvel_objet;
                    129: 
1.8       bertrand  130: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  131:    if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand  132: #  else
                    133:    if (sem_post(semaphore_liste_threads) != 0)
                    134: #  endif
1.1       bertrand  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: 
1.13      bertrand  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: 
1.8       bertrand  170: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  171:    while(sem_wait(&semaphore_liste_threads) == -1)
1.8       bertrand  172: #  else
                    173:    while(sem_wait(semaphore_liste_threads) == -1)
                    174: #  endif
1.1       bertrand  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: 
1.22      bertrand  186:    pthread_mutex_lock(&((*s_argument_thread).mutex));
1.21      bertrand  187:    (*s_argument_thread).nombre_references++;
1.22      bertrand  188:    pthread_mutex_unlock(&((*s_argument_thread).mutex));
                    189: 
1.1       bertrand  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: 
1.8       bertrand  195: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  196:    if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand  197: #  else
                    198:    if (sem_post(semaphore_liste_threads) != 0)
                    199: #  endif
1.1       bertrand  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: 
1.8       bertrand  225: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  226:    while(sem_wait(&semaphore_liste_threads) == -1)
1.8       bertrand  227: #  else
                    228:    while(sem_wait(semaphore_liste_threads) == -1)
                    229: #  endif
1.1       bertrand  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:    {
1.8       bertrand  259: #      ifndef SEMAPHORES_NOMMES
1.1       bertrand  260:        sem_post(&semaphore_liste_threads);
1.8       bertrand  261: #      else
                    262:        sem_post(semaphore_liste_threads);
                    263: #      endif
1.1       bertrand  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: 
1.8       bertrand  284: #      ifndef SEMAPHORES_NOMMES
1.1       bertrand  285:        sem_post(&semaphore_liste_threads);
1.8       bertrand  286: #      else
                    287:        sem_post(semaphore_liste_threads);
                    288: #      endif
1.1       bertrand  289:        pthread_sigmask(SIG_SETMASK, &oldset, NULL);
                    290:        sigpending(&set);
                    291:        return;
                    292:    }
                    293: 
1.8       bertrand  294: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  295:    if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand  296: #  else
                    297:    if (sem_post(semaphore_liste_threads) != 0)
                    298: #  endif
1.1       bertrand  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: 
1.13      bertrand  307:    free((void *) (*l_element_courant).donnee);
                    308:    free((struct_liste_chainee_volatile *) l_element_courant);
                    309: 
1.1       bertrand  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: 
1.8       bertrand  328: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  329:    while(sem_wait(&semaphore_liste_threads) == -1)
1.8       bertrand  330: #  else
                    331:    while(sem_wait(semaphore_liste_threads) == -1)
                    332: #  endif
1.1       bertrand  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:    {
1.8       bertrand  360: #      ifndef SEMAPHORES_NOMMES
1.1       bertrand  361:        sem_post(&semaphore_liste_threads);
1.8       bertrand  362: #      else
                    363:        sem_post(semaphore_liste_threads);
                    364: #      endif
1.1       bertrand  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:    {
1.12      bertrand  383: #      ifndef SEMAPHORES_NOMMES
                    384:        sem_post(&semaphore_liste_threads);
                    385: #      else
                    386:        sem_post(semaphore_liste_threads);
                    387: #      endif
1.1       bertrand  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:        {
1.12      bertrand  405: #          ifndef SEMAPHORES_NOMMES
                    406:            sem_post(&semaphore_liste_threads);
                    407: #          else
                    408:            sem_post(semaphore_liste_threads);
                    409: #          endif
1.1       bertrand  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:        {
1.12      bertrand  424: #          ifndef SEMAPHORES_NOMMES
                    425:            sem_post(&semaphore_liste_threads);
                    426: #          else
                    427:            sem_post(semaphore_liste_threads);
                    428: #          endif
1.1       bertrand  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: 
1.8       bertrand  437: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  438:    if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand  439: #  else
                    440:    if (sem_post(semaphore_liste_threads) != 0)
                    441: #  endif
1.1       bertrand  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: 
1.13      bertrand  450:    free((struct_liste_chainee_volatile *) l_element_courant);
                    451: 
1.1       bertrand  452:    pthread_sigmask(SIG_SETMASK, &oldset, NULL);
                    453:    sigpending(&set);
1.20      bertrand  454: 
1.1       bertrand  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: 
1.8       bertrand  463: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  464:    while(sem_wait(&semaphore_liste_threads) == -1)
1.8       bertrand  465: #  else
                    466:    while(sem_wait(semaphore_liste_threads) == -1)
                    467: #  endif
1.1       bertrand  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:        {
1.8       bertrand  484: #          ifndef SEMAPHORES_NOMMES
1.1       bertrand  485:            while(sem_wait(&((*(*((struct_thread *) (*l_element_courant)
                    486:                    .donnee)).s_etat_processus).semaphore_fork)) == -1)
1.8       bertrand  487: #          else
                    488:            while(sem_wait((*(*((struct_thread *) (*l_element_courant)
                    489:                    .donnee)).s_etat_processus).semaphore_fork) == -1)
                    490: #          endif
1.1       bertrand  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:        {
1.8       bertrand  519: #          ifndef SEMAPHORES_NOMMES
1.1       bertrand  520:            if (sem_post(&((*(*((struct_thread *)
                    521:                    (*l_element_courant).donnee)).s_etat_processus)
                    522:                    .semaphore_fork)) != 0)
1.8       bertrand  523: #          else
                    524:            if (sem_post((*(*((struct_thread *)
                    525:                    (*l_element_courant).donnee)).s_etat_processus)
                    526:                    .semaphore_fork) != 0)
                    527: #          endif
1.1       bertrand  528:            {
1.8       bertrand  529: #              ifndef SEMAPHORES_NOMMES
1.1       bertrand  530:                if (sem_post(&semaphore_liste_threads) != 0)
                    531:                {
                    532:                    (*s_etat_processus).erreur_systeme = d_es_processus;
                    533:                    return;
                    534:                }
1.8       bertrand  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
1.1       bertrand  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: 
1.8       bertrand  551: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  552:    if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand  553: #  else
                    554:    if (sem_post(semaphore_liste_threads) != 0)
                    555: #  endif
1.1       bertrand  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: 
1.8       bertrand  588: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand  589:    while(sem_wait(&semaphore_liste_threads) == -1)
1.8       bertrand  590: #  else
                    591:    while(sem_wait(semaphore_liste_threads) == -1)
                    592: #  endif
1.1       bertrand  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: 
1.13      bertrand  633:            liberation(s_etat_processus, (*s_etat_processus).at_exit);
                    634: 
1.1       bertrand  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:            {
1.20      bertrand  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: 
1.1       bertrand  735:                element_suivant = (*((struct_liste_chainee *) element_courant))
                    736:                        .suivant;
1.20      bertrand  737:                free(element_courant);
1.1       bertrand  738:                element_courant = element_suivant;
                    739:            }
                    740: 
1.20      bertrand  741:            (*s_etat_processus).l_base_pile_processus = NULL;
                    742: 
1.1       bertrand  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:                    {
1.5       bertrand 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:                        }
1.1       bertrand 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))
1.5       bertrand 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:                    }
1.1       bertrand 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: 
1.14      bertrand 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: 
1.1       bertrand 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:            }
1.14      bertrand 1306: */
1.1       bertrand 1307: 
1.15      bertrand 1308:            (*s_etat_processus).s_connecteurs_sql = NULL;
                   1309: 
1.1       bertrand 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: 
1.8       bertrand 1323: #          ifndef SEMAPHORES_NOMMES
1.1       bertrand 1324:            sem_post(&((*s_etat_processus).semaphore_fork));
                   1325:            sem_destroy(&((*s_etat_processus).semaphore_fork));
1.8       bertrand 1326: #          else
                   1327:            sem_post((*s_etat_processus).semaphore_fork);
                   1328:            sem_destroy2((*s_etat_processus).semaphore_fork, sem_fork);
                   1329: #          endif
1.1       bertrand 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;
1.12      bertrand 1356:            sem_post(&semaphore_liste_threads);
1.1       bertrand 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:        {
1.20      bertrand 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: 
1.1       bertrand 1376:            if (pthread_mutex_unlock(&((*s_argument_thread).mutex)) != 0)
                   1377:            {
                   1378:                (*s_etat_processus).erreur_systeme = d_es_processus;
1.12      bertrand 1379:                sem_post(&semaphore_liste_threads);
1.1       bertrand 1380:                return;
                   1381:            }
                   1382: 
                   1383:            pthread_mutex_destroy(&((*s_argument_thread).mutex));
1.20      bertrand 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: 
1.1       bertrand 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;
1.12      bertrand 1400:                sem_post(&semaphore_liste_threads);
1.1       bertrand 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: 
1.8       bertrand 1412: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1413:    if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand 1414: #  else
                   1415:    if (sem_post(semaphore_liste_threads) != 0)
                   1416: #  endif
1.1       bertrand 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
1.17      bertrand 1511: // des signaux asynchrones. Elles ne doivent pas bloquer dans le cas où
1.1       bertrand 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: 
1.8       bertrand 1539: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1540:    while(sem_wait(&semaphore_gestionnaires_signaux_atomique) == -1)
1.8       bertrand 1541: #  else
                   1542:    while(sem_wait(semaphore_gestionnaires_signaux_atomique) == -1)
                   1543: #  endif
1.1       bertrand 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: 
1.8       bertrand 1553: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1554:    if (sem_post(&semaphore_gestionnaires_signaux) == -1)
1.8       bertrand 1555: #  else
                   1556:    if (sem_post(semaphore_gestionnaires_signaux) == -1)
                   1557: #  endif
1.1       bertrand 1558:    {
                   1559:        pthread_sigmask(SIG_SETMASK, &oldset, NULL);
                   1560:        BUG(1, uprintf("Lock error !\n"));
                   1561:        return;
                   1562:    }
                   1563: 
1.8       bertrand 1564: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1565:    if (sem_getvalue(&semaphore_gestionnaires_signaux, &semaphore) != 0)
1.8       bertrand 1566: #  else
                   1567:    if (sem_getvalue(semaphore_gestionnaires_signaux, &semaphore) != 0)
                   1568: #  endif
1.1       bertrand 1569:    {
                   1570:        pthread_sigmask(SIG_SETMASK, &oldset, NULL);
                   1571:        BUG(1, uprintf("Lock error !\n"));
                   1572:        return;
                   1573:    }
                   1574: 
1.8       bertrand 1575: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1576:    if (sem_post(&semaphore_gestionnaires_signaux_atomique) != 0)
1.8       bertrand 1577: #  else
                   1578:    if (sem_post(semaphore_gestionnaires_signaux_atomique) != 0)
                   1579: #  endif
1.1       bertrand 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: 
1.8       bertrand 1594: #      ifndef SEMAPHORES_NOMMES
1.1       bertrand 1595:        while(sem_trywait(&semaphore_liste_threads) == -1)
1.8       bertrand 1596: #      else
                   1597:        while(sem_trywait(semaphore_liste_threads) == -1)
                   1598: #      endif
1.1       bertrand 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: 
1.8       bertrand 1642: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1643:    while(sem_wait(&semaphore_gestionnaires_signaux_atomique) == -1)
1.8       bertrand 1644: #  else
                   1645:    while(sem_wait(semaphore_gestionnaires_signaux_atomique) == -1)
                   1646: #  endif
1.1       bertrand 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: 
1.8       bertrand 1656: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1657:    if (sem_getvalue(&semaphore_gestionnaires_signaux, &semaphore) != 0)
1.8       bertrand 1658: #  else
                   1659:    if (sem_getvalue(semaphore_gestionnaires_signaux, &semaphore) != 0)
                   1660: #  endif
1.1       bertrand 1661:    {
                   1662:        pthread_sigmask(SIG_SETMASK, &oldset, NULL);
                   1663:        BUG(1, uprintf("Unlock error !\n"));
                   1664:        return;
                   1665:    }
                   1666: 
1.8       bertrand 1667: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1668:    while(sem_wait(&semaphore_gestionnaires_signaux) == -1)
1.8       bertrand 1669: #  else
                   1670:    while(sem_wait(semaphore_gestionnaires_signaux) == -1)
                   1671: #  endif
1.1       bertrand 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: 
1.8       bertrand 1681: #  ifndef SEMAPHORES_NOMMES
1.1       bertrand 1682:    if (sem_post(&semaphore_gestionnaires_signaux_atomique) != 0)
1.8       bertrand 1683: #  else
                   1684:    if (sem_post(semaphore_gestionnaires_signaux_atomique) != 0)
                   1685: #  endif
1.1       bertrand 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:    {
1.8       bertrand 1708: #      ifndef SEMAPHORES_NOMMES
1.1       bertrand 1709:        if (sem_post(&semaphore_liste_threads) != 0)
1.8       bertrand 1710: #      else
                   1711:        if (sem_post(semaphore_liste_threads) != 0)
                   1712: #      endif
1.1       bertrand 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: 
1.30      bertrand 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:
1.31    ! bertrand 1777:            BUG(1, uprintf("SIGINT is not queued as it does not "
        !          1778:                    "come from program itself !\n"));
1.30      bertrand 1779:            return(0);
                   1780:        case SIGTSTP:
                   1781:            return(1);
                   1782:        case SIGCONT:
                   1783:            return(2);
                   1784:        case SIGURG:
                   1785:            return(3);
                   1786:        case SIGPIPE:
                   1787:            return(4);
                   1788:        case SIGALRM:
                   1789:            return(5);
                   1790:        case SIGFSTOP:
                   1791:            return(6);
                   1792:        case SIGSTART:
                   1793:            return(7);
                   1794:        case SIGINJECT:
                   1795:            return(8);
                   1796:        case SIGABORT:
                   1797:            return(9);
                   1798:        case SIGFABORT:
                   1799:            return(10);
                   1800:    }
                   1801: 
                   1802:    return(-1);
                   1803: }
                   1804: 
1.1       bertrand 1805: void
1.30      bertrand 1806: creation_fifos_signaux(struct_processus *s_etat_processus)
1.1       bertrand 1807: {
1.30      bertrand 1808:    file                            *desc;
                   1809: 
                   1810:    int                             i;
                   1811: 
                   1812:    key_t                           clef;
                   1813: 
                   1814:    pthread_mutexattr_t             attributs_mutex;
                   1815: 
                   1816:    unsigned char                   *nom;
                   1817: 
                   1818:    /*
                   1819:     * Signaux utilisés
                   1820:     * SIGINT, SIGTSTP, SIGCONT, SIGURG, SIGPIPE, SIGALRM, SIGFSTOP,
                   1821:     * SIGSTART, SIGINJECT, SIGABORT, SIGFABORT
                   1822:     */
                   1823: 
                   1824:    // Création d'un segment de données associé au PID du processus courant
                   1825: 
                   1826:    chemin = (*s_etat_processus).chemin_fichiers_temporaires;
                   1827: 
                   1828:    if ((nom = nom_segment((*s_etat_processus).chemin_fichiers_temporaires,
                   1829:            getpid())) == NULL)
                   1830:    {
                   1831:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1832:        return;
                   1833:    }
                   1834: 
                   1835:    /*
                   1836:     * Structure d'une queue
                   1837:     * 0 : pointeur en lecture sur le premier emplacement libre (int)
                   1838:     * 1 : pointeur en écriture sur le premier emplacement à lire (int)
                   1839:     * 2 : longueur de la queue (int)
                   1840:     * 3 : éléments restants (int)
                   1841:     * 4 à 4 + (2) : queue (int)
                   1842:     * 5 : mutex
                   1843:     */
                   1844: 
                   1845:    nombre_queues = 11;
                   1846:    longueur_queue = 256;
                   1847: 
                   1848:    if ((desc = fopen(nom, "w")) == NULL)
                   1849:    {
                   1850:        (*s_etat_processus).erreur_systeme = d_es_erreur_fichier;
                   1851:        return;
                   1852:    }
                   1853: 
                   1854:    fclose(desc);
                   1855: 
                   1856:    if ((clef = ftok(nom, 1)) == -1)
                   1857:    {
                   1858:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1859:        return;
                   1860:    }
                   1861: 
                   1862:    free(nom);
                   1863: 
                   1864:    if ((segment = shmget(clef,
                   1865:            nombre_queues * (longueur_queue + 4) * sizeof(int),
                   1866:            IPC_CREAT | IPC_EXCL | S_IRUSR | S_IWUSR)) == -1)
                   1867:    {
                   1868:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1869:        return;
                   1870:    }
                   1871: 
                   1872:    fifos = shmat(segment, NULL, 0);
                   1873: 
                   1874:    if (((void *) fifos) == ((void *) -1))
                   1875:    {
                   1876:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1877:        return;
                   1878:    }
                   1879: 
                   1880:    for(i = 0; i < nombre_queues; i++)
                   1881:    {
                   1882:        fifos[(i * (longueur_queue + 4))] = 0;
                   1883:        fifos[(i * (longueur_queue + 4)) + 1] = 0;
                   1884:        fifos[(i * (longueur_queue + 4)) + 2] = longueur_queue;
                   1885:        fifos[(i * (longueur_queue + 4)) + 3] = longueur_queue;
                   1886:    }
                   1887: 
                   1888:    if ((nom = nom_segment_mutexes((*s_etat_processus)
                   1889:            .chemin_fichiers_temporaires, getpid())) == NULL)
                   1890:    {
                   1891:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1892:        return;
                   1893:    }
                   1894: 
                   1895:    if ((desc = fopen(nom, "w")) == NULL)
                   1896:    {
                   1897:        (*s_etat_processus).erreur_systeme = d_es_erreur_fichier;
                   1898:        return;
                   1899:    }
                   1900: 
                   1901:    fclose(desc);
                   1902: 
                   1903:    if ((clef = ftok(nom, 1)) == -1)
                   1904:    {
                   1905:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1906:        return;
                   1907:    }
                   1908: 
                   1909:    free(nom);
                   1910: 
                   1911:    if ((segment_mutexes = shmget(clef,
                   1912:            nombre_queues * sizeof(pthread_mutex_t),
                   1913:            IPC_CREAT | IPC_EXCL | S_IRUSR | S_IWUSR)) == -1)
                   1914:    {
                   1915:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1916:        return;
                   1917:    }
                   1918: 
                   1919:    mutexes = shmat(segment_mutexes, NULL, 0);
                   1920: 
                   1921:    if (((void *) mutexes) == ((void *) -1))
                   1922:    {
                   1923:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1924:        return;
                   1925:    }
                   1926: 
                   1927:    /*
                   1928:     * Création et initialisation d'un mutex par queue. Ce mutex n'est pas
                   1929:     * dans le premier segment parce qu'il peut y avoir des problèmes
                   1930:     * d'alignements sur certaines architectures.
                   1931:     */
                   1932: 
                   1933:    pthread_mutexattr_init(&attributs_mutex);
1.31    ! bertrand 1934:    pthread_mutexattr_settype(&attributs_mutex, PTHREAD_MUTEX_RECURSIVE);
1.30      bertrand 1935: 
                   1936:    for(i = 0; i < nombre_queues; i++)
                   1937:    {
                   1938:        pthread_mutex_init(&(mutexes[i]), &attributs_mutex);
                   1939:    }
                   1940: 
                   1941:    pthread_mutexattr_destroy(&attributs_mutex);
                   1942:    return;
                   1943: }
                   1944: 
                   1945: void
                   1946: liberation_fifos_signaux(struct_processus *s_etat_processus)
                   1947: {
                   1948:    if (shmdt(fifos) == -1)
                   1949:    {
                   1950:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1951:        return;
                   1952:    }
                   1953: 
                   1954:    if (shmdt(mutexes) == -1)
                   1955:    {
                   1956:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1957:        return;
                   1958:    }
                   1959: 
                   1960:    return;
                   1961: }
                   1962: 
                   1963: void
                   1964: destruction_fifos_signaux(struct_processus *s_etat_processus)
                   1965: {
                   1966:    int                 i;
1.31    ! bertrand 1967: 
1.30      bertrand 1968:    unsigned char       *nom;
                   1969: 
                   1970:    if (shmdt(fifos) == -1)
                   1971:    {
                   1972:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1973:        return;
                   1974:    }
                   1975: 
                   1976:    if (shmctl(segment, IPC_RMID, 0) == -1)
                   1977:    {
                   1978:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1979:        return;
                   1980:    }
                   1981: 
                   1982:    for(i = 0; i < nombre_queues; i++)
                   1983:    {
                   1984:        pthread_mutex_destroy(&(mutexes[i]));
                   1985:    }
                   1986: 
                   1987:    if (shmdt(mutexes) == -1)
                   1988:    {
                   1989:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1990:        return;
                   1991:    }
                   1992: 
                   1993:    if (shmctl(segment_mutexes, IPC_RMID, 0) == -1)
                   1994:    {
                   1995:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1996:        return;
                   1997:    }
                   1998: 
                   1999:    if ((nom = nom_segment_mutexes((*s_etat_processus)
                   2000:            .chemin_fichiers_temporaires, getpid())) == NULL)
                   2001:    {
                   2002:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   2003:        return;
                   2004:    }
                   2005: 
                   2006:    unlink(nom);
                   2007:    free(nom);
                   2008: 
                   2009:    if ((nom = nom_segment((*s_etat_processus).chemin_fichiers_temporaires,
                   2010:            getpid())) == NULL)
                   2011:    {
                   2012:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   2013:        return;
                   2014:    }
                   2015: 
                   2016:    unlink(nom);
                   2017:    free(nom);
                   2018: 
                   2019:    return;
                   2020: }
                   2021: 
                   2022: int
                   2023: queue_in(pid_t pid, int signal)
                   2024: {
                   2025:    int             *base;
                   2026:    int             *buffer;
                   2027:    int             *projection_fifos;
                   2028:    int             queue;
                   2029:    int             identifiant;
                   2030: 
                   2031:    key_t           clef;
                   2032: 
                   2033:    pthread_mutex_t *projection_mutexes;
                   2034: 
                   2035:    unsigned char   *nom;
                   2036: 
                   2037:    queue = queue_de_signal(signal);
                   2038: 
                   2039:    // Ouverture des projections
                   2040: 
                   2041:    if ((nom = nom_segment(chemin, pid)) == NULL)
                   2042:    {
                   2043:        return(-1);
                   2044:    }
                   2045: 
                   2046:    if ((clef = ftok(nom, 1)) == -1)
                   2047:    {
                   2048:        free(nom);
                   2049:        return(-1);
                   2050:    }
                   2051: 
                   2052:    free(nom);
                   2053: 
                   2054:    while((identifiant = shmget(clef,
                   2055:            nombre_queues * (longueur_queue + 4) * sizeof(int),
                   2056:            S_IRUSR | S_IWUSR)) == -1);
                   2057: 
                   2058:    projection_fifos = shmat(identifiant, NULL, 0);
                   2059: 
                   2060:    if ((nom = nom_segment_mutexes(chemin, pid)) == NULL)
                   2061:    {
                   2062:        return(-1);
                   2063:    }
                   2064: 
                   2065:    if ((clef = ftok(nom, 1)) == -1)
                   2066:    {
                   2067:        free(nom);
                   2068:        return(-1);
                   2069:    }
                   2070: 
                   2071:    free(nom);
                   2072: 
                   2073:    while((identifiant = shmget(clef,
                   2074:            nombre_queues * sizeof(pthread_mutex_t),
                   2075:            S_IRUSR | S_IWUSR)) == -1);
                   2076: 
                   2077:    projection_mutexes = shmat(identifiant, NULL, 0);
                   2078: 
                   2079:    if (pthread_mutex_lock(&(projection_mutexes[queue])) != 0)
                   2080:    {
                   2081:        return(-1);
                   2082:    }
                   2083: 
                   2084:    base = &(projection_fifos[(longueur_queue + 4) * queue]);
                   2085:    buffer = &(base[4]);
                   2086: 
                   2087:    // base[1] contient le prochain élément à écrire
                   2088:    buffer[base[1]++] = (int) pid;
                   2089:    base[1] %= base[2];
                   2090: 
                   2091:    // base[3] contient le nombre d'éléments non lus
                   2092:    if (base[3] <= 0)
                   2093:    {
                   2094:        pthread_mutex_unlock(&(projection_mutexes[queue]));
                   2095:        shmdt(projection_mutexes);
                   2096:        shmdt(projection_fifos);
                   2097:        return(-1);
                   2098:    }
                   2099: 
                   2100:    base[3]--;
                   2101: 
                   2102:    if (pthread_mutex_unlock(&(projection_mutexes[queue])) != 0)
                   2103:    {
                   2104:        shmdt(projection_mutexes);
                   2105:        shmdt(projection_fifos);
                   2106:        return(-1);
                   2107:    }
                   2108: 
                   2109:    // Fermeture des projections
                   2110:    shmdt(projection_mutexes);
                   2111:    shmdt(projection_fifos);
                   2112:    return(0);
                   2113: }
                   2114: 
                   2115: pid_t
                   2116: origine_signal(int signal)
                   2117: {
                   2118:    int             *base;
                   2119:    int             *buffer;
                   2120:    int             pid;
                   2121:    int             queue;
                   2122: 
                   2123:    queue = queue_de_signal(signal);
                   2124: 
                   2125:    BUG(queue == -1, uprintf("[%d] Unknown signal %d in this context\n",
                   2126:            (int) getpid(), signal));
                   2127: 
                   2128:    if (pthread_mutex_lock(&(mutexes[queue])) != 0)
                   2129:    {
                   2130:        return(-1);
                   2131:    }
                   2132: 
                   2133:    base = &(fifos[(longueur_queue + 4) * queue]);
                   2134:    buffer = &(base[4]);
                   2135:    pid = buffer[base[0]++];
                   2136:    base[0] %= base[2];
                   2137:    base[3]++;
                   2138: 
                   2139:    if (base[3] > base[2])
                   2140:    {
                   2141:        pthread_mutex_unlock(&(mutexes[queue]));
                   2142:        return(-1);
                   2143:    }
                   2144:    if (pthread_mutex_unlock(&(mutexes[queue])) != 0)
                   2145:    {
                   2146:        perror("unlock");
                   2147:        return(-1);
                   2148:    }
                   2149: 
                   2150:    return((pid_t) pid);
                   2151: }
                   2152: 
                   2153: #endif
                   2154: 
                   2155: void
                   2156: interruption1(SIGHANDLER_ARGS)
                   2157: {
                   2158:    pid_t                   pid;
                   2159: 
1.1       bertrand 2160:    pthread_t               thread;
                   2161: 
                   2162:    struct_processus        *s_etat_processus;
                   2163: 
                   2164:    volatile sig_atomic_t   exclusion = 0;
                   2165: 
1.29      bertrand 2166: #  ifdef _BROKEN_SIGINFO
1.31    ! bertrand 2167:    if (signal == SIGINT)
        !          2168:    {
        !          2169:        // Si l'interruption provient du clavier, il n'y a pas eu d'appel
        !          2170:        // à queue_in().
        !          2171: 
        !          2172:        pid = getpid();
        !          2173:    }
        !          2174:    else
        !          2175:    {
        !          2176:        pid = origine_signal(signal);
        !          2177:    }
1.30      bertrand 2178: #  else
                   2179:    pid = (*siginfo).si_pid;
1.29      bertrand 2180: #  endif
                   2181: 
1.1       bertrand 2182:    verrouillage_gestionnaire_signaux();
                   2183: 
                   2184:    switch(signal)
                   2185:    {
                   2186:        case SIGALRM :
                   2187:        {
1.30      bertrand 2188:            if (pid == getpid())
1.1       bertrand 2189:            {
                   2190:                if ((s_etat_processus = recherche_thread(getpid(),
                   2191:                        pthread_self())) == NULL)
                   2192:                {
                   2193:                    deverrouillage_gestionnaire_signaux();
1.30      bertrand 2194:                     return;
1.1       bertrand 2195:                }
                   2196: 
                   2197:                if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2198:                {
                   2199:                    printf("[%d] SIGALRM (thread %llu)\n", (int) getpid(),
                   2200:                            (unsigned long long) pthread_self());
                   2201:                    fflush(stdout);
                   2202:                }
                   2203: 
                   2204:                if ((*s_etat_processus).pid_processus_pere != getpid())
                   2205:                {
                   2206:                    kill((*s_etat_processus).pid_processus_pere, signal);
                   2207:                }
                   2208:                else
                   2209:                {
                   2210:                    (*s_etat_processus).var_volatile_alarme = -1;
                   2211:                    (*s_etat_processus).var_volatile_requete_arret = -1;
                   2212:                }
                   2213:            }
                   2214:            else
                   2215:            {
                   2216:                if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2217:                {
                   2218:                    pthread_kill(thread, signal);
                   2219:                }
                   2220:            }
                   2221: 
                   2222:            break;
                   2223:        }
                   2224: 
                   2225:        case SIGINT :
                   2226:        {
                   2227:            /*
                   2228:             * Une vieille spécification POSIX permet au pointeur siginfo
                   2229:             * d'être nul dans le cas d'un ^C envoyé depuis le clavier.
                   2230:             * Solaris suit en particulier cette spécification.
                   2231:             */
                   2232: 
1.30      bertrand 2233: #          ifndef _BROKEN_SIGINFO
1.1       bertrand 2234:            if (siginfo == NULL)
                   2235:            {
                   2236:                kill(getpid(), signal);
                   2237:            }
1.30      bertrand 2238:            else
                   2239: #          endif
                   2240:            if (pid == getpid())
1.1       bertrand 2241:            {
                   2242:                if ((s_etat_processus = recherche_thread(getpid(),
                   2243:                        pthread_self())) == NULL)
                   2244:                {
                   2245:                    deverrouillage_gestionnaire_signaux();
                   2246:                    return;
                   2247:                }
                   2248: 
                   2249:                if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2250:                {
                   2251:                    printf("[%d] SIGINT (thread %llu)\n", (int) getpid(),
                   2252:                            (unsigned long long) pthread_self());
                   2253:                    fflush(stdout);
                   2254:                }
                   2255: 
                   2256:                if ((*s_etat_processus).pid_processus_pere != getpid())
                   2257:                {
                   2258:                    kill((*s_etat_processus).pid_processus_pere, signal);
                   2259:                }
                   2260:                else
                   2261:                {
                   2262:                    (*s_etat_processus).var_volatile_traitement_sigint = -1;
                   2263: 
                   2264:                    while(exclusion == 1);
                   2265:                    exclusion = 1;
                   2266: 
                   2267:                    if ((*s_etat_processus).var_volatile_requete_arret == -1)
                   2268:                    {
                   2269:                        deverrouillage_gestionnaire_signaux();
                   2270:                        exclusion = 0;
                   2271:                        return;
                   2272:                    }
                   2273: 
                   2274:                    if (strncmp(getenv("LANG"), "fr", 2) == 0)
                   2275:                    {
                   2276:                        printf("+++Interruption\n");
                   2277:                    }
                   2278:                    else
                   2279:                    {
                   2280:                        printf("+++Interrupt\n");
                   2281:                    }
                   2282: 
                   2283:                    fflush(stdout);
                   2284: 
                   2285:                    (*s_etat_processus).var_volatile_requete_arret = -1;
                   2286:                    (*s_etat_processus).var_volatile_alarme = -1;
                   2287: 
                   2288:                    exclusion = 0;
                   2289:                }
                   2290:            }
                   2291:            else
                   2292:            {
                   2293:                if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2294:                {
                   2295:                    pthread_kill(thread, signal);
                   2296:                }
                   2297:            }
                   2298: 
                   2299:            break;
                   2300:        }
                   2301: 
                   2302:        default :
                   2303:        {
                   2304:            BUG(1, uprintf("[%d] Unknown signal %d in this context\n",
                   2305:                    (int) getpid(), signal));
                   2306:            break;
                   2307:        }
                   2308:    }
                   2309: 
                   2310:    deverrouillage_gestionnaire_signaux();
                   2311:    return;
                   2312: }
                   2313: 
                   2314: void
1.30      bertrand 2315: interruption2(SIGHANDLER_ARGS)
1.1       bertrand 2316: {
1.30      bertrand 2317:    pid_t                   pid;
                   2318: 
1.1       bertrand 2319:    pthread_t               thread;
1.30      bertrand 2320: 
1.1       bertrand 2321:    struct_processus        *s_etat_processus;
                   2322: 
1.29      bertrand 2323: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2324:    pid = origine_signal(signal);
                   2325: #  else
                   2326:    pid = (*siginfo).si_pid;
1.29      bertrand 2327: #  endif
                   2328: 
1.1       bertrand 2329:    verrouillage_gestionnaire_signaux();
                   2330: 
1.30      bertrand 2331: #  ifndef _BROKEN_SIGINFO
1.1       bertrand 2332:    if (siginfo == NULL)
                   2333:    {
                   2334:        /*
                   2335:         * Le signal SIGFSTP provient de la mort du processus de contrôle.
                   2336:         * Sous certains systèmes (Linux...), la mort du terminal de contrôle
                   2337:         * se traduit par l'envoi d'un SIGHUP au processus. Sur d'autres
                   2338:         * (SunOS), le processus reçoit un SIGFSTP avec une structure siginfo
                   2339:         * non initialisée (pointeur NULL) issue de TERMIO.
                   2340:         */
                   2341: 
                   2342:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2343:        {
                   2344:            pthread_kill(thread, SIGHUP);
                   2345:            deverrouillage_gestionnaire_signaux();
                   2346:            return;
                   2347:        }
                   2348:    }
1.30      bertrand 2349:    else
                   2350: #  endif
                   2351:    if (pid == getpid())
1.1       bertrand 2352:    {
                   2353:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2354:                == NULL)
                   2355:        {
                   2356:            deverrouillage_gestionnaire_signaux();
                   2357:            return;
                   2358:        }
                   2359: 
                   2360:        /*
                   2361:         *  0 => fonctionnement normal
                   2362:         * -1 => requête
                   2363:         *  1 => requête acceptée en attente de traitement
                   2364:         */
                   2365: 
                   2366:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2367:        {
                   2368:            printf("[%d] SIGTSTP (thread %llu)\n", (int) getpid(),
                   2369:                    (unsigned long long) pthread_self());
                   2370:            fflush(stdout);
                   2371:        }
                   2372: 
                   2373:        if ((*s_etat_processus).var_volatile_processus_pere == 0)
                   2374:        {
                   2375:            kill((*s_etat_processus).pid_processus_pere, signal);
                   2376:        }
                   2377:        else
                   2378:        {
                   2379:            (*s_etat_processus).var_volatile_requete_arret2 = -1;
                   2380:        }
                   2381:    }
                   2382:    else
                   2383:    {
                   2384:        // Envoi d'un signal au thread maître du groupe.
                   2385: 
                   2386:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2387:        {
                   2388:            pthread_kill(thread, SIGTSTP);
                   2389:            deverrouillage_gestionnaire_signaux();
                   2390:            return;
                   2391:        }
                   2392:    }
                   2393: 
                   2394:    deverrouillage_gestionnaire_signaux();
                   2395:    return;
                   2396: }
                   2397: 
                   2398: void
1.30      bertrand 2399: interruption3(SIGHANDLER_ARGS)
1.1       bertrand 2400: {
1.30      bertrand 2401:    pid_t                   pid;
                   2402: 
1.1       bertrand 2403:    struct_processus        *s_etat_processus;
                   2404: 
                   2405:    static int              compteur = 0;
                   2406: 
1.29      bertrand 2407: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2408:    pid = origine_signal(signal);
                   2409: #  else
                   2410:    pid = (*siginfo).si_pid;
1.29      bertrand 2411: #  endif
                   2412: 
1.1       bertrand 2413:    verrouillage_gestionnaire_signaux();
                   2414: 
                   2415:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2416:    {
                   2417:        deverrouillage_gestionnaire_signaux();
                   2418:        return;
                   2419:    }
                   2420: 
                   2421:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2422:    {
                   2423:        printf("[%d] SIGSEGV (thread %llu)\n", (int) getpid(),
                   2424:                (unsigned long long) pthread_self());
                   2425:        fflush(stdout);
                   2426:    }
                   2427: 
                   2428:    if ((*s_etat_processus).var_volatile_recursivite == -1)
                   2429:    {
                   2430:        // Segfault dans un appel de fonction récursive
                   2431:        deverrouillage_gestionnaire_signaux();
                   2432:        longjmp(contexte, -1);
                   2433:    }
                   2434:    else
                   2435:    {
                   2436:        // Segfault dans une routine interne
                   2437:        if (strncmp(getenv("LANG"), "fr", 2) == 0)
                   2438:        {
                   2439:            printf("+++Système : Violation d'accès (dépassement de pile)\n");
                   2440:        }
                   2441:        else
                   2442:        {
                   2443:            printf("+++System : Access violation (stack overflow)\n");
                   2444:        }
                   2445: 
                   2446:        fflush(stdout);
                   2447: 
                   2448:        compteur++;
                   2449: 
                   2450:        if (compteur > 1)
                   2451:        {
                   2452:            deverrouillage_gestionnaire_signaux();
                   2453:            exit(EXIT_FAILURE);
                   2454:        }
                   2455:        else
                   2456:        {
                   2457:            deverrouillage_gestionnaire_signaux();
                   2458:            longjmp(contexte_initial, -1);
                   2459:        }
                   2460:    }
                   2461: 
                   2462:    deverrouillage_gestionnaire_signaux();
                   2463:    return;
                   2464: }
                   2465: 
                   2466: void
1.30      bertrand 2467: interruption4(SIGHANDLER_ARGS)
1.1       bertrand 2468: {
1.30      bertrand 2469:    pid_t                   pid;
                   2470: 
1.1       bertrand 2471:    struct_processus        *s_etat_processus;
                   2472: 
1.29      bertrand 2473: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2474:    pid = origine_signal(signal);
                   2475: #  else
                   2476:    pid = (*siginfo).si_pid;
1.29      bertrand 2477: #  endif
                   2478: 
1.1       bertrand 2479:    verrouillage_gestionnaire_signaux();
                   2480: 
                   2481:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2482:    {
                   2483:        deverrouillage_gestionnaire_signaux();
                   2484:        return;
                   2485:    }
                   2486: 
                   2487:    /*
                   2488:     * Démarrage d'un processus fils ou gestion de SIGCONT (SUSPEND)
                   2489:     */
                   2490: 
                   2491:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2492:    {
                   2493:        printf("[%d] SIGSTART/SIGCONT (thread %llu)\n", (int) getpid(),
                   2494:                (unsigned long long) pthread_self());
                   2495:        fflush(stdout);
                   2496:    }
                   2497: 
                   2498:    deverrouillage_gestionnaire_signaux();
                   2499:    return;
                   2500: }
                   2501: 
                   2502: void
1.30      bertrand 2503: interruption5(SIGHANDLER_ARGS)
1.1       bertrand 2504: {
1.30      bertrand 2505:    pid_t                   pid;
                   2506: 
1.1       bertrand 2507:    pthread_t               thread;
1.30      bertrand 2508: 
1.1       bertrand 2509:    struct_processus        *s_etat_processus;
                   2510: 
1.29      bertrand 2511: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2512:    pid = origine_signal(signal);
                   2513: #  else
                   2514:    pid = (*siginfo).si_pid;
1.29      bertrand 2515: #  endif
                   2516: 
1.1       bertrand 2517:    verrouillage_gestionnaire_signaux();
                   2518: 
1.30      bertrand 2519:    if (pid == getpid())
1.1       bertrand 2520:    {
                   2521:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2522:                == NULL)
                   2523:        {
                   2524:            deverrouillage_gestionnaire_signaux();
                   2525:            return;
                   2526:        }
                   2527: 
                   2528:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2529:        {
1.16      bertrand 2530:            printf("[%d] SIGFSTOP (thread %llu)\n", (int) getpid(),
                   2531:                    (unsigned long long) pthread_self());
                   2532:            fflush(stdout);
1.1       bertrand 2533:        }
                   2534: 
                   2535:        /*
                   2536:         * var_globale_traitement_retarde_stop :
                   2537:         *  0 -> traitement immédiat
                   2538:         *  1 -> traitement retardé (aucun signal reçu)
                   2539:         * -1 -> traitement retardé (un ou plusieurs signaux stop reçus)
                   2540:         */
                   2541: 
1.11      bertrand 2542:        if ((*s_etat_processus).var_volatile_traitement_retarde_stop == 0)
1.1       bertrand 2543:        {
1.11      bertrand 2544:            (*s_etat_processus).var_volatile_requete_arret = -1;
1.1       bertrand 2545:        }
                   2546:        else
                   2547:        {
1.11      bertrand 2548:            (*s_etat_processus).var_volatile_traitement_retarde_stop = -1;
1.1       bertrand 2549:        }
                   2550:    }
                   2551:    else
                   2552:    {
1.11      bertrand 2553:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2554:                == NULL)
                   2555:        {
                   2556:            deverrouillage_gestionnaire_signaux();
                   2557:            return;
                   2558:        }
                   2559: 
1.1       bertrand 2560:        // Envoi d'un signal au thread maître du groupe.
                   2561: 
                   2562:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2563:        {
1.10      bertrand 2564:            pthread_kill(thread, signal);
1.1       bertrand 2565:            deverrouillage_gestionnaire_signaux();
                   2566:            return;
                   2567:        }
                   2568:    }
                   2569: 
                   2570:    deverrouillage_gestionnaire_signaux();
                   2571:    return;
                   2572: }
                   2573: 
                   2574: void
1.30      bertrand 2575: interruption6(SIGHANDLER_ARGS)
1.1       bertrand 2576: {
1.30      bertrand 2577:    pid_t                   pid;
                   2578: 
1.1       bertrand 2579:    struct_processus        *s_etat_processus;
                   2580: 
1.29      bertrand 2581: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2582:    pid = origine_signal(signal);
                   2583: #  else
                   2584:    pid = (*siginfo).si_pid;
1.29      bertrand 2585: #  endif
                   2586: 
1.1       bertrand 2587:    verrouillage_gestionnaire_signaux();
                   2588: 
                   2589:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2590:    {
                   2591:        deverrouillage_gestionnaire_signaux();
                   2592:        return;
                   2593:    }
                   2594: 
                   2595:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2596:    {
                   2597:        printf("[%d] SIGINJECT/SIGQUIT (thread %llu)\n", (int) getpid(),
                   2598:                (unsigned long long) pthread_self());
                   2599:        fflush(stdout);
                   2600:    }
                   2601: 
                   2602:    deverrouillage_gestionnaire_signaux();
                   2603:    return;
                   2604: }
                   2605: 
                   2606: void
1.30      bertrand 2607: interruption7(SIGHANDLER_ARGS)
1.1       bertrand 2608: {
1.30      bertrand 2609:    pid_t                   pid;
                   2610: 
1.1       bertrand 2611:    struct_processus        *s_etat_processus;
                   2612: 
1.29      bertrand 2613: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2614:    pid = origine_signal(signal);
                   2615: #  else
                   2616:    pid = (*siginfo).si_pid;
1.29      bertrand 2617: #  endif
                   2618: 
1.1       bertrand 2619:    verrouillage_gestionnaire_signaux();
                   2620: 
                   2621:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2622:    {
                   2623:        deverrouillage_gestionnaire_signaux();
                   2624:        return;
                   2625:    }
                   2626: 
                   2627:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2628:    {
                   2629:        printf("[%d] SIGPIPE (thread %llu)\n", (int) getpid(),
                   2630:                (unsigned long long) pthread_self());
                   2631:        fflush(stdout);
                   2632:    }
                   2633: 
                   2634:    (*s_etat_processus).var_volatile_requete_arret = -1;
                   2635:    deverrouillage_gestionnaire_signaux();
                   2636: 
                   2637:    BUG(1, printf("[%d] SIGPIPE\n", (int) getpid()));
                   2638:    return;
                   2639: }
                   2640: 
                   2641: void
1.30      bertrand 2642: interruption8(SIGHANDLER_ARGS)
1.1       bertrand 2643: {
1.30      bertrand 2644:    pid_t                   pid;
                   2645: 
1.1       bertrand 2646:    pthread_t               thread;
1.30      bertrand 2647: 
1.1       bertrand 2648:    struct_processus        *s_etat_processus;
                   2649: 
1.29      bertrand 2650: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2651:    pid = origine_signal(signal);
                   2652: #  else
                   2653:    pid = (*siginfo).si_pid;
1.29      bertrand 2654: #  endif
                   2655: 
1.1       bertrand 2656:    verrouillage_gestionnaire_signaux();
                   2657: 
1.30      bertrand 2658:    if (pid == getpid())
1.1       bertrand 2659:    {
                   2660:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2661:                == NULL)
                   2662:        {
                   2663:            deverrouillage_gestionnaire_signaux();
                   2664:            return;
                   2665:        }
                   2666: 
                   2667:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2668:        {
                   2669:            printf("[%d] SIGURG (thread %llu)\n", (int) getpid(),
                   2670:                    (unsigned long long) pthread_self());
                   2671:            fflush(stdout);
                   2672:        }
                   2673: 
                   2674:        (*s_etat_processus).var_volatile_alarme = -1;
                   2675:        (*s_etat_processus).var_volatile_requete_arret = -1;
                   2676:    }
                   2677:    else
                   2678:    {
                   2679:        // Envoi d'un signal au thread maître du groupe.
                   2680: 
                   2681:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2682:        {
                   2683:            pthread_kill(thread, SIGURG);
                   2684:            deverrouillage_gestionnaire_signaux();
                   2685:            return;
                   2686:        }
                   2687:    }
                   2688: 
                   2689:    deverrouillage_gestionnaire_signaux();
                   2690:    return;
                   2691: }
                   2692: 
                   2693: void
1.30      bertrand 2694: interruption9(SIGHANDLER_ARGS)
1.1       bertrand 2695: {
1.30      bertrand 2696:    pid_t                   pid;
                   2697: 
1.1       bertrand 2698:    struct_processus        *s_etat_processus;
                   2699: 
1.29      bertrand 2700: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2701:    pid = origine_signal(signal);
                   2702: #  else
                   2703:    pid = (*siginfo).si_pid;
1.29      bertrand 2704: #  endif
                   2705: 
1.1       bertrand 2706:    verrouillage_gestionnaire_signaux();
                   2707: 
                   2708:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2709:    {
                   2710:        deverrouillage_gestionnaire_signaux();
                   2711:        return;
                   2712:    }
                   2713: 
                   2714:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2715:    {
                   2716:        printf("[%d] SIGABORT/SIGPROF (thread %llu)\n", (int) getpid(),
                   2717:                (unsigned long long) pthread_self());
                   2718:        fflush(stdout);
                   2719:    }
                   2720: 
                   2721:    deverrouillage_gestionnaire_signaux();
1.30      bertrand 2722: 
                   2723: #  ifdef _BROKEN_SIGINFO
                   2724:    if (queue_in(getpid(), signal) != 0)
                   2725:    {
                   2726:        return;
                   2727:    }
                   2728: 
                   2729:    interruption11(signal);
                   2730: #  else
1.17      bertrand 2731:    interruption11(signal, siginfo, context);
1.30      bertrand 2732: #  endif
1.1       bertrand 2733:    return;
                   2734: }
                   2735: 
                   2736: void
1.30      bertrand 2737: interruption10(SIGHANDLER_ARGS)
1.1       bertrand 2738: {
                   2739:    file                    *fichier;
                   2740: 
1.30      bertrand 2741:    pid_t                   pid;
                   2742: 
1.1       bertrand 2743:    struct_processus        *s_etat_processus;
                   2744: 
                   2745:    unsigned char           nom[8 + 64 + 1];
                   2746: 
1.29      bertrand 2747: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2748:    pid = origine_signal(signal);
                   2749: #  else
                   2750:    pid = (*siginfo).si_pid;
1.29      bertrand 2751: #  endif
                   2752: 
1.1       bertrand 2753:    verrouillage_gestionnaire_signaux();
                   2754: 
                   2755:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2756:    {
                   2757:        deverrouillage_gestionnaire_signaux();
                   2758:        return;
                   2759:    }
                   2760: 
                   2761:    snprintf(nom, 8 + 64 + 1, "rpl-out-%lu-%lu", (unsigned long) getpid(),
                   2762:            (unsigned long) pthread_self());
                   2763: 
                   2764:    if ((fichier = fopen(nom, "w+")) != NULL)
                   2765:    {
                   2766:        fclose(fichier);
                   2767: 
                   2768:        freopen(nom, "w", stdout);
                   2769:        freopen(nom, "w", stderr);
                   2770:    }
                   2771: 
                   2772:    freopen("/dev/null", "r", stdin);
                   2773: 
                   2774:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2775:    {
                   2776:        printf("[%d] SIGHUP (thread %llu)\n", (int) getpid(),
                   2777:                (unsigned long long) pthread_self());
                   2778:        fflush(stdout);
                   2779:    }
                   2780: 
                   2781:    deverrouillage_gestionnaire_signaux();
                   2782:    return;
                   2783: }
                   2784: 
                   2785: void
1.30      bertrand 2786: interruption11(SIGHANDLER_ARGS)
1.16      bertrand 2787: {
1.30      bertrand 2788:    pid_t                   pid;
                   2789: 
1.16      bertrand 2790:    pthread_t               thread;
1.30      bertrand 2791: 
1.16      bertrand 2792:    struct_processus        *s_etat_processus;
                   2793: 
1.29      bertrand 2794: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2795:    pid = origine_signal(signal);
                   2796: #  else
                   2797:    pid = (*siginfo).si_pid;
1.29      bertrand 2798: #  endif
                   2799: 
1.16      bertrand 2800:    verrouillage_gestionnaire_signaux();
                   2801: 
1.30      bertrand 2802:    if (pid == getpid())
1.16      bertrand 2803:    {
                   2804:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2805:                == NULL)
                   2806:        {
                   2807:            deverrouillage_gestionnaire_signaux();
                   2808:            return;
                   2809:        }
                   2810: 
                   2811:        (*s_etat_processus).arret_depuis_abort = -1;
                   2812: 
                   2813:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2814:        {
                   2815:            printf("[%d] SIGFABORT (thread %llu)\n", (int) getpid(),
                   2816:                    (unsigned long long) pthread_self());
                   2817:            fflush(stdout);
                   2818:        }
                   2819: 
                   2820:        /*
                   2821:         * var_globale_traitement_retarde_stop :
                   2822:         *  0 -> traitement immédiat
                   2823:         *  1 -> traitement retardé (aucun signal reçu)
                   2824:         * -1 -> traitement retardé (un ou plusieurs signaux stop reçus)
                   2825:         */
                   2826: 
                   2827:        if ((*s_etat_processus).var_volatile_traitement_retarde_stop == 0)
                   2828:        {
                   2829:            (*s_etat_processus).var_volatile_requete_arret = -1;
                   2830:        }
                   2831:        else
                   2832:        {
                   2833:            (*s_etat_processus).var_volatile_traitement_retarde_stop = -1;
                   2834:        }
                   2835:    }
                   2836:    else
                   2837:    {
                   2838:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2839:                == NULL)
                   2840:        {
                   2841:            deverrouillage_gestionnaire_signaux();
                   2842:            return;
                   2843:        }
                   2844: 
                   2845:        (*s_etat_processus).arret_depuis_abort = -1;
                   2846: 
                   2847:        // Envoi d'un signal au thread maître du groupe.
                   2848: 
                   2849:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2850:        {
                   2851:            pthread_kill(thread, signal);
                   2852:            deverrouillage_gestionnaire_signaux();
                   2853:            return;
                   2854:        }
                   2855:    }
                   2856: 
                   2857:    deverrouillage_gestionnaire_signaux();
                   2858:    return;
                   2859: }
                   2860: 
                   2861: void
1.1       bertrand 2862: traitement_exceptions_gsl(const char *reason, const char *file,
                   2863:        int line, int gsl_errno)
                   2864: {
                   2865:    struct_processus        *s_etat_processus;
                   2866: 
                   2867:    verrouillage_gestionnaire_signaux();
                   2868: 
                   2869:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2870:    {
                   2871:        deverrouillage_gestionnaire_signaux();
                   2872:        return;
                   2873:    }
                   2874: 
                   2875:    (*s_etat_processus).var_volatile_exception_gsl = gsl_errno;
                   2876:    deverrouillage_gestionnaire_signaux();
                   2877:    return;
                   2878: }
                   2879: 
1.30      bertrand 2880: #ifdef _BROKEN_SIGINFO
                   2881: 
                   2882: #undef kill
                   2883: #undef pthread_kill
                   2884: 
                   2885: int
                   2886: rpl_kill(pid_t pid, int signal)
                   2887: {
                   2888:    /*
                   2889:     * Lorsqu'on veut interrompre le processus pid, on ouvre le segment
                   2890:     * correspondant au processus en question et ou ajoute le pid dans la
                   2891:     * queue.
                   2892:     */
                   2893: 
1.31    ! bertrand 2894:    if ((signal != 0) && (signal != SIGINT))
1.30      bertrand 2895:    {
                   2896:        if (queue_in(pid, signal) != 0)
                   2897:        {
                   2898:            return(-1);
                   2899:        }
                   2900:    }
                   2901: 
                   2902:    return(kill(pid, signal));
                   2903: }
                   2904: 
                   2905: int
                   2906: rpl_pthread_kill(pthread_t tid, int signal)
                   2907: {
1.31    ! bertrand 2908:    if ((signal != 0) && (signal != SIGINT))
1.30      bertrand 2909:    {
                   2910:        if (queue_in(getpid(), signal) != 0)
                   2911:        {
                   2912:            return(-1);
                   2913:        }
                   2914:    }
                   2915: 
                   2916:    return(pthread_kill(tid, signal));
                   2917: }
                   2918: 
                   2919: #endif
                   2920: 
1.1       bertrand 2921: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>