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

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: 
1.33      bertrand 1729: #define    longueur_queue  256
                   1730: #define nombre_queues  13
                   1731: 
1.30      bertrand 1732: static int             *fifos;
                   1733: static int             segment;
1.33      bertrand 1734: static sem_t           *semaphores[nombre_queues];
                   1735: static sem_t           *semaphore_global;
1.30      bertrand 1736: 
1.33      bertrand 1737: #ifdef IPCS_SYSV
1.30      bertrand 1738: static unsigned char   *chemin = NULL;
1.33      bertrand 1739: #endif
1.30      bertrand 1740: 
                   1741: unsigned char *
                   1742: nom_segment(unsigned char *chemin, pid_t pid)
                   1743: {
                   1744:    unsigned char               *fichier;
                   1745: 
1.33      bertrand 1746: #  ifdef IPCS_SYSV
1.30      bertrand 1747:    if ((fichier = malloc((strlen(chemin) + 1 + 256 + 1) *
                   1748:            sizeof(unsigned char))) == NULL)
                   1749:    {
                   1750:        return(NULL);
                   1751:    }
                   1752: 
                   1753:    sprintf(fichier, "%s/RPL-SIGQUEUES-%d", chemin, (int) pid);
1.33      bertrand 1754: #  else
                   1755:    if ((fichier = malloc((1 + 256 + 1) *
                   1756:            sizeof(unsigned char))) == NULL)
                   1757:    {
                   1758:        return(NULL);
                   1759:    }
                   1760: 
                   1761:    sprintf(fichier, "/RPL-SIGQUEUES-%d", (int) pid);
                   1762: #  endif
1.30      bertrand 1763: 
                   1764:    return(fichier);
                   1765: }
                   1766: 
                   1767: unsigned char *
1.33      bertrand 1768: nom_semaphore(pid_t pid, int queue)
1.30      bertrand 1769: {
                   1770:    unsigned char               *fichier;
                   1771: 
1.33      bertrand 1772:    if ((fichier = malloc((256 + 1) * sizeof(unsigned char))) == NULL)
1.30      bertrand 1773:    {
                   1774:        return(NULL);
                   1775:    }
                   1776: 
1.33      bertrand 1777:    sprintf(fichier, "/RPL-SIGESMAPHORES-%d-%d", (int) pid, queue);
1.30      bertrand 1778: 
                   1779:    return(fichier);
                   1780: }
                   1781: 
1.33      bertrand 1782: inline int
1.30      bertrand 1783: queue_de_signal(int signal)
                   1784: {
                   1785:    switch(signal)
                   1786:    {
                   1787:        case SIGINT:
                   1788:            return(0);
                   1789:        case SIGTSTP:
                   1790:            return(1);
                   1791:        case SIGCONT:
                   1792:            return(2);
                   1793:        case SIGURG:
                   1794:            return(3);
                   1795:        case SIGPIPE:
                   1796:            return(4);
                   1797:        case SIGALRM:
                   1798:            return(5);
                   1799:        case SIGFSTOP:
                   1800:            return(6);
                   1801:        case SIGSTART:
                   1802:            return(7);
                   1803:        case SIGINJECT:
                   1804:            return(8);
                   1805:        case SIGABORT:
                   1806:            return(9);
                   1807:        case SIGFABORT:
                   1808:            return(10);
1.33      bertrand 1809:        case SIGSEGV:
                   1810:            return(11);
                   1811:        case SIGBUS:
                   1812:            return(12);
1.30      bertrand 1813:    }
                   1814: 
                   1815:    return(-1);
                   1816: }
                   1817: 
1.1       bertrand 1818: void
1.30      bertrand 1819: creation_fifos_signaux(struct_processus *s_etat_processus)
1.1       bertrand 1820: {
1.33      bertrand 1821:    /*
                   1822:     * Signaux utilisés
                   1823:     * SIGINT, SIGTSTP, SIGCONT, SIGURG, SIGPIPE, SIGALRM, SIGFSTOP,
                   1824:     * SIGSTART, SIGINJECT, SIGABORT, SIGFABORT
                   1825:     */
                   1826: 
                   1827: #  ifndef IPCS_SYSV // POSIX
                   1828: #  else // SystemV
                   1829: 
1.30      bertrand 1830:    file                            *desc;
                   1831: 
                   1832:    int                             i;
                   1833: 
                   1834:    key_t                           clef;
                   1835: 
                   1836:    unsigned char                   *nom;
                   1837: 
                   1838:    // Création d'un segment de données associé au PID du processus courant
                   1839: 
                   1840:    chemin = (*s_etat_processus).chemin_fichiers_temporaires;
                   1841: 
                   1842:    if ((nom = nom_segment((*s_etat_processus).chemin_fichiers_temporaires,
                   1843:            getpid())) == NULL)
                   1844:    {
                   1845:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1846:        return;
                   1847:    }
                   1848: 
                   1849:    if ((desc = fopen(nom, "w")) == NULL)
                   1850:    {
                   1851:        (*s_etat_processus).erreur_systeme = d_es_erreur_fichier;
                   1852:        return;
                   1853:    }
                   1854: 
                   1855:    fclose(desc);
                   1856: 
                   1857:    if ((clef = ftok(nom, 1)) == -1)
                   1858:    {
                   1859:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1860:        return;
                   1861:    }
                   1862: 
                   1863:    free(nom);
                   1864: 
                   1865:    if ((segment = shmget(clef,
                   1866:            nombre_queues * (longueur_queue + 4) * sizeof(int),
                   1867:            IPC_CREAT | IPC_EXCL | S_IRUSR | S_IWUSR)) == -1)
                   1868:    {
                   1869:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1870:        return;
                   1871:    }
                   1872: 
                   1873:    fifos = shmat(segment, NULL, 0);
                   1874: 
                   1875:    if (((void *) fifos) == ((void *) -1))
                   1876:    {
1.33      bertrand 1877:        if (shmctl(segment, IPC_RMID, 0) == -1)
                   1878:        {
                   1879:            (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1880:            return;
                   1881:        }
                   1882: 
1.30      bertrand 1883:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1884:        return;
                   1885:    }
                   1886: 
1.33      bertrand 1887: #  endif
                   1888: 
                   1889:    /*
                   1890:     * Structure d'une queue
                   1891:     * 0 : pointeur en lecture sur le premier emplacement libre (int)
                   1892:     * 1 : pointeur en écriture sur le premier emplacement à lire (int)
                   1893:     * 2 : longueur de la queue (int)
                   1894:     * 3 : éléments restants (int)
                   1895:     * 4 à 4 + (2) : queue (int)
                   1896:     */
                   1897: 
1.30      bertrand 1898:    for(i = 0; i < nombre_queues; i++)
                   1899:    {
                   1900:        fifos[(i * (longueur_queue + 4))] = 0;
                   1901:        fifos[(i * (longueur_queue + 4)) + 1] = 0;
                   1902:        fifos[(i * (longueur_queue + 4)) + 2] = longueur_queue;
                   1903:        fifos[(i * (longueur_queue + 4)) + 3] = longueur_queue;
                   1904:    }
                   1905: 
1.33      bertrand 1906:    // Création des sémaphores : un sémaphore par signal et par queue
                   1907:    // plus un sémaphore global pour tous les threads.
                   1908: 
                   1909:    for(i = 0; i < nombre_queues; i++)
1.30      bertrand 1910:    {
1.33      bertrand 1911:        if ((nom = nom_semaphore(getpid(), i)) == NULL)
                   1912:        {
                   1913:            (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1914:            return;
                   1915:        }
1.30      bertrand 1916: 
1.33      bertrand 1917:        // Le sémaphore est créé en écrasant si nécessaire un sémaphore
                   1918:        // préexistant. Comme le nom du sémaphore contient l'identifiant du
                   1919:        // processus, il est anormal d'avoir un sémaphore de même nom
                   1920:        // préexistant.
1.30      bertrand 1921: 
1.33      bertrand 1922:        if ((semaphores[i] = sem_open(nom, O_CREAT, S_IRUSR | S_IWUSR,
                   1923:                1)) == SEM_FAILED)
                   1924:        {
                   1925:            (*s_etat_processus).erreur_systeme = d_es_semaphore;
                   1926:            return;
                   1927:        }
1.30      bertrand 1928: 
1.33      bertrand 1929:        free(nom);
1.30      bertrand 1930:    }
                   1931: 
                   1932: 
1.33      bertrand 1933:    if ((nom = nom_semaphore(getpid(), nombre_queues)) == NULL)
1.30      bertrand 1934:    {
                   1935:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1936:        return;
                   1937:    }
                   1938: 
1.33      bertrand 1939:    if ((semaphore_global = sem_open(nom, O_CREAT, S_IRUSR | S_IWUSR,
                   1940:            1)) == SEM_FAILED)
1.30      bertrand 1941:    {
1.33      bertrand 1942:        (*s_etat_processus).erreur_systeme = d_es_semaphore;
1.30      bertrand 1943:        return;
                   1944:    }
                   1945: 
1.33      bertrand 1946:    free(nom);
1.30      bertrand 1947: 
                   1948:    return;
                   1949: }
                   1950: 
                   1951: void
                   1952: liberation_fifos_signaux(struct_processus *s_etat_processus)
                   1953: {
1.33      bertrand 1954:    int                 i;
                   1955: 
1.30      bertrand 1956:    if (shmdt(fifos) == -1)
                   1957:    {
                   1958:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1959:        return;
                   1960:    }
                   1961: 
1.33      bertrand 1962:    for(i = 0; i < nombre_queues; i++)
                   1963:    {
                   1964:        if (sem_close(semaphores[i]) != 0)
                   1965:        {
                   1966:            (*s_etat_processus).erreur_systeme = d_es_semaphore;
                   1967:            return;
                   1968:        }
                   1969:    }
                   1970: 
                   1971:    if (sem_close(semaphore_global) != 0)
1.30      bertrand 1972:    {
1.33      bertrand 1973:        (*s_etat_processus).erreur_systeme = d_es_semaphore;
1.30      bertrand 1974:        return;
                   1975:    }
                   1976: 
                   1977:    return;
                   1978: }
                   1979: 
                   1980: void
                   1981: destruction_fifos_signaux(struct_processus *s_etat_processus)
                   1982: {
                   1983:    int                 i;
1.31      bertrand 1984: 
1.30      bertrand 1985:    unsigned char       *nom;
                   1986: 
                   1987:    if (shmdt(fifos) == -1)
                   1988:    {
                   1989:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1990:        return;
                   1991:    }
                   1992: 
                   1993:    if (shmctl(segment, IPC_RMID, 0) == -1)
                   1994:    {
                   1995:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1996:        return;
                   1997:    }
                   1998: 
1.33      bertrand 1999:    if ((nom = nom_segment((*s_etat_processus).chemin_fichiers_temporaires,
                   2000:            getpid())) == NULL)
1.30      bertrand 2001:    {
                   2002:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   2003:        return;
                   2004:    }
                   2005: 
1.33      bertrand 2006:    unlink(nom);
                   2007:    free(nom);
                   2008: 
                   2009:    for(i = 0; i < nombre_queues; i++)
1.30      bertrand 2010:    {
1.33      bertrand 2011:        if ((nom = nom_semaphore(getpid(), i)) == NULL)
                   2012:        {
                   2013:            (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   2014:            return;
                   2015:        }
                   2016: 
                   2017:        if (sem_unlink(nom) != 0)
                   2018:        {
                   2019:            (*s_etat_processus).erreur_systeme = d_es_semaphore;
                   2020:            return;
                   2021:        }
                   2022: 
                   2023:        free(nom);
1.30      bertrand 2024:    }
                   2025: 
1.33      bertrand 2026:    if ((nom = nom_semaphore(getpid(), nombre_queues)) == NULL)
1.30      bertrand 2027:    {
                   2028:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   2029:        return;
                   2030:    }
                   2031: 
1.33      bertrand 2032:    if (sem_unlink(nom) != 0)
1.30      bertrand 2033:    {
1.33      bertrand 2034:        (*s_etat_processus).erreur_systeme = d_es_semaphore;
1.30      bertrand 2035:        return;
                   2036:    }
                   2037: 
                   2038:    free(nom);
                   2039: 
                   2040:    return;
                   2041: }
                   2042: 
                   2043: int
                   2044: queue_in(pid_t pid, int signal)
                   2045: {
1.33      bertrand 2046: #undef printf
                   2047: // Transformer ce truc en POSIX ! On ne fait du SysV que si on n'a pas le choix
                   2048: 
                   2049: #  ifndef IPCS_SYSV
                   2050: #  else // Traitement à l'aide d'IPCS SystemV
                   2051: 
1.30      bertrand 2052:    int             *base;
                   2053:    int             *buffer;
                   2054:    int             *projection_fifos;
                   2055:    int             queue;
                   2056:    int             identifiant;
                   2057: 
                   2058:    key_t           clef;
                   2059: 
1.33      bertrand 2060:    sem_t           *semaphore;
                   2061: 
                   2062:    struct stat     s_stat;
1.30      bertrand 2063: 
                   2064:    unsigned char   *nom;
                   2065: 
                   2066:    queue = queue_de_signal(signal);
                   2067: 
                   2068:    // Ouverture des projections
                   2069: 
                   2070:    if ((nom = nom_segment(chemin, pid)) == NULL)
                   2071:    {
                   2072:        return(-1);
                   2073:    }
                   2074: 
1.33      bertrand 2075:    // Dans le cas de SIGSTART, premier signal envoyé à un processus fils,
                   2076:    // il convient d'attendre que le fichier support soit effectivement
                   2077:    // accessible. Dans tous les autres cas, ce fichier doit exister. S'il
                   2078:    // n'existe plus, le processus associé n'existe plus.
                   2079: 
                   2080:    if (signal == SIGSTART)
                   2081:    {
                   2082:        // On attend que le fichier sois présent
                   2083: 
                   2084:        while(stat(nom, &s_stat) != 0);
                   2085:    }
                   2086: 
1.30      bertrand 2087:    if ((clef = ftok(nom, 1)) == -1)
                   2088:    {
                   2089:        return(-1);
                   2090:    }
                   2091: 
                   2092:    free(nom);
                   2093: 
1.33      bertrand 2094:    if (signal == SIGSTART)
                   2095:    {
                   2096:        while((identifiant = shmget(clef,
                   2097:                nombre_queues * (longueur_queue + 4) * sizeof(int),
                   2098:                S_IRUSR | S_IWUSR)) == -1);
                   2099:    }
                   2100:    else
                   2101:    {
                   2102:        if ((identifiant = shmget(clef,
                   2103:                nombre_queues * (longueur_queue + 4) * sizeof(int),
                   2104:                S_IRUSR | S_IWUSR)) == -1)
                   2105:        {
                   2106:            return(-1);
                   2107:        }
                   2108:    }
1.30      bertrand 2109: 
                   2110:    projection_fifos = shmat(identifiant, NULL, 0);
                   2111: 
1.33      bertrand 2112:    if (((void *) projection_fifos) == ((void *) -1))
1.30      bertrand 2113:    {
                   2114:        return(-1);
                   2115:    }
                   2116: 
1.33      bertrand 2117:    if ((nom = nom_semaphore(pid, queue)) == NULL)
1.30      bertrand 2118:    {
1.33      bertrand 2119:        shmdt(projection_fifos);
1.30      bertrand 2120:        return(-1);
                   2121:    }
                   2122: 
1.33      bertrand 2123:    while((semaphore = sem_open(nom, 0)) == SEM_FAILED);
1.30      bertrand 2124: 
1.33      bertrand 2125:    if (sem_wait(semaphore) != 0)
1.30      bertrand 2126:    {
1.33      bertrand 2127:        shmdt(projection_fifos);
1.30      bertrand 2128:        return(-1);
                   2129:    }
                   2130: 
1.33      bertrand 2131:    // Il ne faut pas empiler plusieurs SIGSTART car SIGSTART peut provenir
                   2132:    // de l'instruction SWI. Plusieurs threads peuvent interrompre de façon
                   2133:    // asynchrone le processus père durant une phase de signaux masqués.
                   2134: 
1.30      bertrand 2135:    base = &(projection_fifos[(longueur_queue + 4) * queue]);
                   2136:    buffer = &(base[4]);
                   2137: 
1.33      bertrand 2138:    // base[3] contient le nombre d'éléments restants
1.30      bertrand 2139: 
                   2140:    if (base[3] <= 0)
                   2141:    {
1.33      bertrand 2142:        sem_post(semaphore);
                   2143:        sem_close(semaphore);
1.30      bertrand 2144:        shmdt(projection_fifos);
                   2145:        return(-1);
                   2146:    }
                   2147: 
                   2148:    base[3]--;
                   2149: 
1.33      bertrand 2150:    // base[1] contient le prochain élément à écrire
                   2151:    buffer[base[1]++] = (int) pid;
                   2152:    base[1] %= base[2];
                   2153: 
                   2154:    if (sem_post(semaphore) != 0)
1.30      bertrand 2155:    {
                   2156:        shmdt(projection_fifos);
1.33      bertrand 2157:        sem_close(semaphore);
1.30      bertrand 2158:        return(-1);
                   2159:    }
                   2160: 
1.33      bertrand 2161:    sem_close(semaphore);
                   2162: 
1.30      bertrand 2163:    // Fermeture des projections
                   2164:    shmdt(projection_fifos);
1.33      bertrand 2165: 
                   2166: #  endif
                   2167: 
1.30      bertrand 2168:    return(0);
                   2169: }
                   2170: 
                   2171: pid_t
                   2172: origine_signal(int signal)
                   2173: {
                   2174:    int             *base;
                   2175:    int             *buffer;
                   2176:    int             pid;
                   2177:    int             queue;
                   2178: 
                   2179:    queue = queue_de_signal(signal);
                   2180: 
                   2181:    BUG(queue == -1, uprintf("[%d] Unknown signal %d in this context\n",
                   2182:            (int) getpid(), signal));
                   2183: 
1.33      bertrand 2184:    if (sem_wait(semaphores[queue]) != 0)
1.30      bertrand 2185:    {
                   2186:        return(-1);
                   2187:    }
                   2188: 
1.33      bertrand 2189:    // Le signal SIGCONT peut être envoyé de façon totalement asynchrone.
                   2190:    // Il peut y avoir plus de signaux envoyés que d'interruptions traitées.
                   2191:    // Il convient donc de rectifier la queue lors du traitement de
                   2192:    // l'interruption correspondante. Le gestionnaire étant installé sans
                   2193:    // l'option NODEFER, la queue reste cohérente.
                   2194: 
                   2195:    if (signal == SIGCONT)
                   2196:    {
                   2197:        base = &(fifos[(longueur_queue + 4) * queue]);
                   2198:        buffer = &(base[4]);
                   2199:        base[0] = (base[1] - 1) % base[2];
                   2200:        pid = buffer[base[0]++];
                   2201:        base[3] = base[2];
                   2202:    }
                   2203:    else
                   2204:    {
                   2205:        base = &(fifos[(longueur_queue + 4) * queue]);
                   2206:        buffer = &(base[4]);
                   2207:        pid = buffer[base[0]++];
                   2208:        base[0] %= base[2];
                   2209:        base[3]++;
                   2210:    }
1.30      bertrand 2211: 
                   2212:    if (base[3] > base[2])
                   2213:    {
1.33      bertrand 2214:        sem_post(semaphores[queue]);
1.30      bertrand 2215:        return(-1);
                   2216:    }
1.33      bertrand 2217: 
                   2218:    if (sem_post(semaphores[queue]) != 0)
1.30      bertrand 2219:    {
                   2220:        return(-1);
                   2221:    }
                   2222: 
                   2223:    return((pid_t) pid);
                   2224: }
                   2225: 
                   2226: #endif
                   2227: 
                   2228: void
                   2229: interruption1(SIGHANDLER_ARGS)
                   2230: {
                   2231:    pid_t                   pid;
                   2232: 
1.1       bertrand 2233:    pthread_t               thread;
                   2234: 
                   2235:    struct_processus        *s_etat_processus;
                   2236: 
                   2237:    volatile sig_atomic_t   exclusion = 0;
                   2238: 
1.32      bertrand 2239:    verrouillage_gestionnaire_signaux();
                   2240: 
1.29      bertrand 2241: #  ifdef _BROKEN_SIGINFO
1.31      bertrand 2242:    if (signal == SIGINT)
                   2243:    {
                   2244:        // Si l'interruption provient du clavier, il n'y a pas eu d'appel
                   2245:        // à queue_in().
                   2246: 
                   2247:        pid = getpid();
                   2248:    }
                   2249:    else
                   2250:    {
                   2251:        pid = origine_signal(signal);
                   2252:    }
1.30      bertrand 2253: #  else
                   2254:    pid = (*siginfo).si_pid;
1.29      bertrand 2255: #  endif
                   2256: 
1.1       bertrand 2257:    switch(signal)
                   2258:    {
                   2259:        case SIGALRM :
                   2260:        {
1.30      bertrand 2261:            if (pid == getpid())
1.1       bertrand 2262:            {
                   2263:                if ((s_etat_processus = recherche_thread(getpid(),
                   2264:                        pthread_self())) == NULL)
                   2265:                {
                   2266:                    deverrouillage_gestionnaire_signaux();
1.30      bertrand 2267:                     return;
1.1       bertrand 2268:                }
                   2269: 
                   2270:                if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2271:                {
                   2272:                    printf("[%d] SIGALRM (thread %llu)\n", (int) getpid(),
                   2273:                            (unsigned long long) pthread_self());
                   2274:                    fflush(stdout);
                   2275:                }
                   2276: 
                   2277:                if ((*s_etat_processus).pid_processus_pere != getpid())
                   2278:                {
                   2279:                    kill((*s_etat_processus).pid_processus_pere, signal);
                   2280:                }
                   2281:                else
                   2282:                {
                   2283:                    (*s_etat_processus).var_volatile_alarme = -1;
                   2284:                    (*s_etat_processus).var_volatile_requete_arret = -1;
                   2285:                }
                   2286:            }
                   2287:            else
                   2288:            {
                   2289:                if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2290:                {
                   2291:                    pthread_kill(thread, signal);
                   2292:                }
                   2293:            }
                   2294: 
                   2295:            break;
                   2296:        }
                   2297: 
                   2298:        case SIGINT :
                   2299:        {
                   2300:            /*
                   2301:             * Une vieille spécification POSIX permet au pointeur siginfo
                   2302:             * d'être nul dans le cas d'un ^C envoyé depuis le clavier.
                   2303:             * Solaris suit en particulier cette spécification.
                   2304:             */
                   2305: 
1.30      bertrand 2306: #          ifndef _BROKEN_SIGINFO
1.1       bertrand 2307:            if (siginfo == NULL)
                   2308:            {
                   2309:                kill(getpid(), signal);
                   2310:            }
1.30      bertrand 2311:            else
                   2312: #          endif
                   2313:            if (pid == getpid())
1.1       bertrand 2314:            {
                   2315:                if ((s_etat_processus = recherche_thread(getpid(),
                   2316:                        pthread_self())) == NULL)
                   2317:                {
                   2318:                    deverrouillage_gestionnaire_signaux();
                   2319:                    return;
                   2320:                }
                   2321: 
                   2322:                if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2323:                {
                   2324:                    printf("[%d] SIGINT (thread %llu)\n", (int) getpid(),
                   2325:                            (unsigned long long) pthread_self());
                   2326:                    fflush(stdout);
                   2327:                }
                   2328: 
                   2329:                if ((*s_etat_processus).pid_processus_pere != getpid())
                   2330:                {
                   2331:                    kill((*s_etat_processus).pid_processus_pere, signal);
                   2332:                }
                   2333:                else
                   2334:                {
                   2335:                    (*s_etat_processus).var_volatile_traitement_sigint = -1;
                   2336: 
                   2337:                    while(exclusion == 1);
                   2338:                    exclusion = 1;
                   2339: 
                   2340:                    if ((*s_etat_processus).var_volatile_requete_arret == -1)
                   2341:                    {
                   2342:                        deverrouillage_gestionnaire_signaux();
                   2343:                        exclusion = 0;
                   2344:                        return;
                   2345:                    }
                   2346: 
                   2347:                    if (strncmp(getenv("LANG"), "fr", 2) == 0)
                   2348:                    {
                   2349:                        printf("+++Interruption\n");
                   2350:                    }
                   2351:                    else
                   2352:                    {
                   2353:                        printf("+++Interrupt\n");
                   2354:                    }
                   2355: 
                   2356:                    fflush(stdout);
                   2357: 
                   2358:                    (*s_etat_processus).var_volatile_requete_arret = -1;
                   2359:                    (*s_etat_processus).var_volatile_alarme = -1;
                   2360: 
                   2361:                    exclusion = 0;
                   2362:                }
                   2363:            }
                   2364:            else
                   2365:            {
                   2366:                if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2367:                {
                   2368:                    pthread_kill(thread, signal);
                   2369:                }
                   2370:            }
                   2371: 
                   2372:            break;
                   2373:        }
                   2374: 
                   2375:        default :
                   2376:        {
                   2377:            BUG(1, uprintf("[%d] Unknown signal %d in this context\n",
                   2378:                    (int) getpid(), signal));
                   2379:            break;
                   2380:        }
                   2381:    }
                   2382: 
                   2383:    deverrouillage_gestionnaire_signaux();
                   2384:    return;
                   2385: }
                   2386: 
                   2387: void
1.30      bertrand 2388: interruption2(SIGHANDLER_ARGS)
1.1       bertrand 2389: {
1.30      bertrand 2390:    pid_t                   pid;
                   2391: 
1.1       bertrand 2392:    pthread_t               thread;
1.30      bertrand 2393: 
1.1       bertrand 2394:    struct_processus        *s_etat_processus;
                   2395: 
1.32      bertrand 2396:    verrouillage_gestionnaire_signaux();
                   2397: 
1.29      bertrand 2398: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2399:    pid = origine_signal(signal);
                   2400: #  else
                   2401:    pid = (*siginfo).si_pid;
1.29      bertrand 2402: #  endif
                   2403: 
1.30      bertrand 2404: #  ifndef _BROKEN_SIGINFO
1.1       bertrand 2405:    if (siginfo == NULL)
                   2406:    {
                   2407:        /*
                   2408:         * Le signal SIGFSTP provient de la mort du processus de contrôle.
                   2409:         * Sous certains systèmes (Linux...), la mort du terminal de contrôle
                   2410:         * se traduit par l'envoi d'un SIGHUP au processus. Sur d'autres
                   2411:         * (SunOS), le processus reçoit un SIGFSTP avec une structure siginfo
                   2412:         * non initialisée (pointeur NULL) issue de TERMIO.
                   2413:         */
                   2414: 
                   2415:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2416:        {
                   2417:            pthread_kill(thread, SIGHUP);
                   2418:            deverrouillage_gestionnaire_signaux();
                   2419:            return;
                   2420:        }
                   2421:    }
1.30      bertrand 2422:    else
                   2423: #  endif
                   2424:    if (pid == getpid())
1.1       bertrand 2425:    {
                   2426:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2427:                == NULL)
                   2428:        {
                   2429:            deverrouillage_gestionnaire_signaux();
                   2430:            return;
                   2431:        }
                   2432: 
                   2433:        /*
                   2434:         *  0 => fonctionnement normal
                   2435:         * -1 => requête
                   2436:         *  1 => requête acceptée en attente de traitement
                   2437:         */
                   2438: 
                   2439:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2440:        {
                   2441:            printf("[%d] SIGTSTP (thread %llu)\n", (int) getpid(),
                   2442:                    (unsigned long long) pthread_self());
                   2443:            fflush(stdout);
                   2444:        }
                   2445: 
                   2446:        if ((*s_etat_processus).var_volatile_processus_pere == 0)
                   2447:        {
                   2448:            kill((*s_etat_processus).pid_processus_pere, signal);
                   2449:        }
                   2450:        else
                   2451:        {
                   2452:            (*s_etat_processus).var_volatile_requete_arret2 = -1;
                   2453:        }
                   2454:    }
                   2455:    else
                   2456:    {
                   2457:        // Envoi d'un signal au thread maître du groupe.
                   2458: 
                   2459:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2460:        {
                   2461:            pthread_kill(thread, SIGTSTP);
                   2462:            deverrouillage_gestionnaire_signaux();
                   2463:            return;
                   2464:        }
                   2465:    }
                   2466: 
                   2467:    deverrouillage_gestionnaire_signaux();
                   2468:    return;
                   2469: }
                   2470: 
                   2471: void
1.30      bertrand 2472: interruption3(SIGHANDLER_ARGS)
1.1       bertrand 2473: {
1.30      bertrand 2474:    pid_t                   pid;
                   2475: 
1.1       bertrand 2476:    struct_processus        *s_etat_processus;
                   2477: 
                   2478:    static int              compteur = 0;
                   2479: 
1.32      bertrand 2480:    verrouillage_gestionnaire_signaux();
                   2481: 
1.29      bertrand 2482: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2483:    pid = origine_signal(signal);
                   2484: #  else
                   2485:    pid = (*siginfo).si_pid;
1.29      bertrand 2486: #  endif
                   2487: 
1.1       bertrand 2488:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2489:    {
                   2490:        deverrouillage_gestionnaire_signaux();
                   2491:        return;
                   2492:    }
                   2493: 
                   2494:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2495:    {
                   2496:        printf("[%d] SIGSEGV (thread %llu)\n", (int) getpid(),
                   2497:                (unsigned long long) pthread_self());
                   2498:        fflush(stdout);
                   2499:    }
                   2500: 
                   2501:    if ((*s_etat_processus).var_volatile_recursivite == -1)
                   2502:    {
                   2503:        // Segfault dans un appel de fonction récursive
                   2504:        deverrouillage_gestionnaire_signaux();
                   2505:        longjmp(contexte, -1);
                   2506:    }
                   2507:    else
                   2508:    {
                   2509:        // Segfault dans une routine interne
                   2510:        if (strncmp(getenv("LANG"), "fr", 2) == 0)
                   2511:        {
                   2512:            printf("+++Système : Violation d'accès (dépassement de pile)\n");
                   2513:        }
                   2514:        else
                   2515:        {
                   2516:            printf("+++System : Access violation (stack overflow)\n");
                   2517:        }
                   2518: 
                   2519:        fflush(stdout);
                   2520: 
                   2521:        compteur++;
                   2522: 
                   2523:        if (compteur > 1)
                   2524:        {
                   2525:            deverrouillage_gestionnaire_signaux();
                   2526:            exit(EXIT_FAILURE);
                   2527:        }
                   2528:        else
                   2529:        {
                   2530:            deverrouillage_gestionnaire_signaux();
                   2531:            longjmp(contexte_initial, -1);
                   2532:        }
                   2533:    }
                   2534: 
                   2535:    deverrouillage_gestionnaire_signaux();
                   2536:    return;
                   2537: }
                   2538: 
                   2539: void
1.30      bertrand 2540: interruption4(SIGHANDLER_ARGS)
1.1       bertrand 2541: {
1.30      bertrand 2542:    pid_t                   pid;
                   2543: 
1.1       bertrand 2544:    struct_processus        *s_etat_processus;
                   2545: 
1.32      bertrand 2546:    verrouillage_gestionnaire_signaux();
                   2547: 
1.29      bertrand 2548: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2549:    pid = origine_signal(signal);
                   2550: #  else
                   2551:    pid = (*siginfo).si_pid;
1.29      bertrand 2552: #  endif
                   2553: 
1.1       bertrand 2554:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2555:    {
                   2556:        deverrouillage_gestionnaire_signaux();
                   2557:        return;
                   2558:    }
                   2559: 
                   2560:    /*
                   2561:     * Démarrage d'un processus fils ou gestion de SIGCONT (SUSPEND)
                   2562:     */
                   2563: 
                   2564:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2565:    {
                   2566:        printf("[%d] SIGSTART/SIGCONT (thread %llu)\n", (int) getpid(),
                   2567:                (unsigned long long) pthread_self());
                   2568:        fflush(stdout);
                   2569:    }
                   2570: 
                   2571:    deverrouillage_gestionnaire_signaux();
                   2572:    return;
                   2573: }
                   2574: 
                   2575: void
1.30      bertrand 2576: interruption5(SIGHANDLER_ARGS)
1.1       bertrand 2577: {
1.30      bertrand 2578:    pid_t                   pid;
                   2579: 
1.1       bertrand 2580:    pthread_t               thread;
1.30      bertrand 2581: 
1.1       bertrand 2582:    struct_processus        *s_etat_processus;
                   2583: 
1.32      bertrand 2584:    verrouillage_gestionnaire_signaux();
                   2585: 
1.29      bertrand 2586: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2587:    pid = origine_signal(signal);
                   2588: #  else
                   2589:    pid = (*siginfo).si_pid;
1.29      bertrand 2590: #  endif
                   2591: 
1.30      bertrand 2592:    if (pid == getpid())
1.1       bertrand 2593:    {
                   2594:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2595:                == NULL)
                   2596:        {
                   2597:            deverrouillage_gestionnaire_signaux();
                   2598:            return;
                   2599:        }
                   2600: 
                   2601:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2602:        {
1.16      bertrand 2603:            printf("[%d] SIGFSTOP (thread %llu)\n", (int) getpid(),
                   2604:                    (unsigned long long) pthread_self());
                   2605:            fflush(stdout);
1.1       bertrand 2606:        }
                   2607: 
                   2608:        /*
                   2609:         * var_globale_traitement_retarde_stop :
                   2610:         *  0 -> traitement immédiat
                   2611:         *  1 -> traitement retardé (aucun signal reçu)
                   2612:         * -1 -> traitement retardé (un ou plusieurs signaux stop reçus)
                   2613:         */
                   2614: 
1.11      bertrand 2615:        if ((*s_etat_processus).var_volatile_traitement_retarde_stop == 0)
1.1       bertrand 2616:        {
1.11      bertrand 2617:            (*s_etat_processus).var_volatile_requete_arret = -1;
1.1       bertrand 2618:        }
                   2619:        else
                   2620:        {
1.11      bertrand 2621:            (*s_etat_processus).var_volatile_traitement_retarde_stop = -1;
1.1       bertrand 2622:        }
                   2623:    }
                   2624:    else
                   2625:    {
1.11      bertrand 2626:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2627:                == NULL)
                   2628:        {
                   2629:            deverrouillage_gestionnaire_signaux();
                   2630:            return;
                   2631:        }
                   2632: 
1.1       bertrand 2633:        // Envoi d'un signal au thread maître du groupe.
                   2634: 
                   2635:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2636:        {
1.10      bertrand 2637:            pthread_kill(thread, signal);
1.1       bertrand 2638:            deverrouillage_gestionnaire_signaux();
                   2639:            return;
                   2640:        }
                   2641:    }
                   2642: 
                   2643:    deverrouillage_gestionnaire_signaux();
                   2644:    return;
                   2645: }
                   2646: 
                   2647: void
1.30      bertrand 2648: interruption6(SIGHANDLER_ARGS)
1.1       bertrand 2649: {
1.30      bertrand 2650:    pid_t                   pid;
                   2651: 
1.1       bertrand 2652:    struct_processus        *s_etat_processus;
                   2653: 
1.32      bertrand 2654:    verrouillage_gestionnaire_signaux();
                   2655: 
1.29      bertrand 2656: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2657:    pid = origine_signal(signal);
                   2658: #  else
                   2659:    pid = (*siginfo).si_pid;
1.29      bertrand 2660: #  endif
                   2661: 
1.1       bertrand 2662:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2663:    {
                   2664:        deverrouillage_gestionnaire_signaux();
                   2665:        return;
                   2666:    }
                   2667: 
                   2668:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2669:    {
                   2670:        printf("[%d] SIGINJECT/SIGQUIT (thread %llu)\n", (int) getpid(),
                   2671:                (unsigned long long) pthread_self());
                   2672:        fflush(stdout);
                   2673:    }
                   2674: 
                   2675:    deverrouillage_gestionnaire_signaux();
                   2676:    return;
                   2677: }
                   2678: 
                   2679: void
1.30      bertrand 2680: interruption7(SIGHANDLER_ARGS)
1.1       bertrand 2681: {
1.30      bertrand 2682:    pid_t                   pid;
                   2683: 
1.1       bertrand 2684:    struct_processus        *s_etat_processus;
                   2685: 
1.32      bertrand 2686:    verrouillage_gestionnaire_signaux();
                   2687: 
1.29      bertrand 2688: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2689:    pid = origine_signal(signal);
                   2690: #  else
                   2691:    pid = (*siginfo).si_pid;
1.29      bertrand 2692: #  endif
                   2693: 
1.1       bertrand 2694:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2695:    {
                   2696:        deverrouillage_gestionnaire_signaux();
                   2697:        return;
                   2698:    }
                   2699: 
                   2700:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2701:    {
                   2702:        printf("[%d] SIGPIPE (thread %llu)\n", (int) getpid(),
                   2703:                (unsigned long long) pthread_self());
                   2704:        fflush(stdout);
                   2705:    }
                   2706: 
                   2707:    (*s_etat_processus).var_volatile_requete_arret = -1;
                   2708:    deverrouillage_gestionnaire_signaux();
                   2709: 
                   2710:    BUG(1, printf("[%d] SIGPIPE\n", (int) getpid()));
                   2711:    return;
                   2712: }
                   2713: 
                   2714: void
1.30      bertrand 2715: interruption8(SIGHANDLER_ARGS)
1.1       bertrand 2716: {
1.30      bertrand 2717:    pid_t                   pid;
                   2718: 
1.1       bertrand 2719:    pthread_t               thread;
1.30      bertrand 2720: 
1.1       bertrand 2721:    struct_processus        *s_etat_processus;
                   2722: 
1.32      bertrand 2723:    verrouillage_gestionnaire_signaux();
                   2724: 
1.29      bertrand 2725: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2726:    pid = origine_signal(signal);
                   2727: #  else
                   2728:    pid = (*siginfo).si_pid;
1.29      bertrand 2729: #  endif
                   2730: 
1.30      bertrand 2731:    if (pid == getpid())
1.1       bertrand 2732:    {
                   2733:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2734:                == NULL)
                   2735:        {
                   2736:            deverrouillage_gestionnaire_signaux();
                   2737:            return;
                   2738:        }
                   2739: 
                   2740:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2741:        {
                   2742:            printf("[%d] SIGURG (thread %llu)\n", (int) getpid(),
                   2743:                    (unsigned long long) pthread_self());
                   2744:            fflush(stdout);
                   2745:        }
                   2746: 
                   2747:        (*s_etat_processus).var_volatile_alarme = -1;
                   2748:        (*s_etat_processus).var_volatile_requete_arret = -1;
                   2749:    }
                   2750:    else
                   2751:    {
                   2752:        // Envoi d'un signal au thread maître du groupe.
                   2753: 
                   2754:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2755:        {
                   2756:            pthread_kill(thread, SIGURG);
                   2757:            deverrouillage_gestionnaire_signaux();
                   2758:            return;
                   2759:        }
                   2760:    }
                   2761: 
                   2762:    deverrouillage_gestionnaire_signaux();
                   2763:    return;
                   2764: }
                   2765: 
                   2766: void
1.30      bertrand 2767: interruption9(SIGHANDLER_ARGS)
1.1       bertrand 2768: {
1.30      bertrand 2769:    pid_t                   pid;
                   2770: 
1.1       bertrand 2771:    struct_processus        *s_etat_processus;
                   2772: 
1.32      bertrand 2773:    verrouillage_gestionnaire_signaux();
                   2774: 
1.29      bertrand 2775: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2776:    pid = origine_signal(signal);
                   2777: #  else
                   2778:    pid = (*siginfo).si_pid;
1.29      bertrand 2779: #  endif
                   2780: 
1.1       bertrand 2781:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2782:    {
                   2783:        deverrouillage_gestionnaire_signaux();
                   2784:        return;
                   2785:    }
                   2786: 
                   2787:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2788:    {
                   2789:        printf("[%d] SIGABORT/SIGPROF (thread %llu)\n", (int) getpid(),
                   2790:                (unsigned long long) pthread_self());
                   2791:        fflush(stdout);
                   2792:    }
                   2793: 
1.30      bertrand 2794: #  ifdef _BROKEN_SIGINFO
                   2795:    if (queue_in(getpid(), signal) != 0)
                   2796:    {
                   2797:        return;
                   2798:    }
                   2799: 
1.32      bertrand 2800:    deverrouillage_gestionnaire_signaux();
1.30      bertrand 2801:    interruption11(signal);
                   2802: #  else
1.32      bertrand 2803:    deverrouillage_gestionnaire_signaux();
1.17      bertrand 2804:    interruption11(signal, siginfo, context);
1.30      bertrand 2805: #  endif
1.1       bertrand 2806:    return;
                   2807: }
                   2808: 
                   2809: void
1.30      bertrand 2810: interruption10(SIGHANDLER_ARGS)
1.1       bertrand 2811: {
                   2812:    file                    *fichier;
                   2813: 
1.30      bertrand 2814:    pid_t                   pid;
                   2815: 
1.1       bertrand 2816:    struct_processus        *s_etat_processus;
                   2817: 
                   2818:    unsigned char           nom[8 + 64 + 1];
                   2819: 
1.32      bertrand 2820:    verrouillage_gestionnaire_signaux();
                   2821: 
1.29      bertrand 2822: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2823:    pid = origine_signal(signal);
                   2824: #  else
                   2825:    pid = (*siginfo).si_pid;
1.29      bertrand 2826: #  endif
                   2827: 
1.1       bertrand 2828:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2829:    {
                   2830:        deverrouillage_gestionnaire_signaux();
                   2831:        return;
                   2832:    }
                   2833: 
                   2834:    snprintf(nom, 8 + 64 + 1, "rpl-out-%lu-%lu", (unsigned long) getpid(),
                   2835:            (unsigned long) pthread_self());
                   2836: 
                   2837:    if ((fichier = fopen(nom, "w+")) != NULL)
                   2838:    {
                   2839:        fclose(fichier);
                   2840: 
                   2841:        freopen(nom, "w", stdout);
                   2842:        freopen(nom, "w", stderr);
                   2843:    }
                   2844: 
                   2845:    freopen("/dev/null", "r", stdin);
                   2846: 
                   2847:    if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2848:    {
                   2849:        printf("[%d] SIGHUP (thread %llu)\n", (int) getpid(),
                   2850:                (unsigned long long) pthread_self());
                   2851:        fflush(stdout);
                   2852:    }
                   2853: 
                   2854:    deverrouillage_gestionnaire_signaux();
                   2855:    return;
                   2856: }
                   2857: 
                   2858: void
1.30      bertrand 2859: interruption11(SIGHANDLER_ARGS)
1.16      bertrand 2860: {
1.30      bertrand 2861:    pid_t                   pid;
                   2862: 
1.16      bertrand 2863:    pthread_t               thread;
1.30      bertrand 2864: 
1.16      bertrand 2865:    struct_processus        *s_etat_processus;
                   2866: 
1.32      bertrand 2867:    verrouillage_gestionnaire_signaux();
                   2868: 
1.29      bertrand 2869: #  ifdef _BROKEN_SIGINFO
1.30      bertrand 2870:    pid = origine_signal(signal);
                   2871: #  else
                   2872:    pid = (*siginfo).si_pid;
1.29      bertrand 2873: #  endif
                   2874: 
1.30      bertrand 2875:    if (pid == getpid())
1.16      bertrand 2876:    {
                   2877:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2878:                == NULL)
                   2879:        {
                   2880:            deverrouillage_gestionnaire_signaux();
                   2881:            return;
                   2882:        }
                   2883: 
                   2884:        (*s_etat_processus).arret_depuis_abort = -1;
                   2885: 
                   2886:        if (((*s_etat_processus).type_debug & d_debug_signaux) != 0)
                   2887:        {
                   2888:            printf("[%d] SIGFABORT (thread %llu)\n", (int) getpid(),
                   2889:                    (unsigned long long) pthread_self());
                   2890:            fflush(stdout);
                   2891:        }
                   2892: 
                   2893:        /*
                   2894:         * var_globale_traitement_retarde_stop :
                   2895:         *  0 -> traitement immédiat
                   2896:         *  1 -> traitement retardé (aucun signal reçu)
                   2897:         * -1 -> traitement retardé (un ou plusieurs signaux stop reçus)
                   2898:         */
                   2899: 
                   2900:        if ((*s_etat_processus).var_volatile_traitement_retarde_stop == 0)
                   2901:        {
                   2902:            (*s_etat_processus).var_volatile_requete_arret = -1;
                   2903:        }
                   2904:        else
                   2905:        {
                   2906:            (*s_etat_processus).var_volatile_traitement_retarde_stop = -1;
                   2907:        }
                   2908:    }
                   2909:    else
                   2910:    {
                   2911:        if ((s_etat_processus = recherche_thread(getpid(), pthread_self()))
                   2912:                == NULL)
                   2913:        {
                   2914:            deverrouillage_gestionnaire_signaux();
                   2915:            return;
                   2916:        }
                   2917: 
                   2918:        (*s_etat_processus).arret_depuis_abort = -1;
                   2919: 
                   2920:        // Envoi d'un signal au thread maître du groupe.
                   2921: 
                   2922:        if (recherche_thread_principal(getpid(), &thread) == d_vrai)
                   2923:        {
                   2924:            pthread_kill(thread, signal);
                   2925:            deverrouillage_gestionnaire_signaux();
                   2926:            return;
                   2927:        }
                   2928:    }
                   2929: 
                   2930:    deverrouillage_gestionnaire_signaux();
                   2931:    return;
                   2932: }
                   2933: 
                   2934: void
1.1       bertrand 2935: traitement_exceptions_gsl(const char *reason, const char *file,
                   2936:        int line, int gsl_errno)
                   2937: {
                   2938:    struct_processus        *s_etat_processus;
                   2939: 
                   2940:    verrouillage_gestionnaire_signaux();
                   2941: 
                   2942:    if ((s_etat_processus = recherche_thread(getpid(), pthread_self())) == NULL)
                   2943:    {
                   2944:        deverrouillage_gestionnaire_signaux();
                   2945:        return;
                   2946:    }
                   2947: 
                   2948:    (*s_etat_processus).var_volatile_exception_gsl = gsl_errno;
                   2949:    deverrouillage_gestionnaire_signaux();
                   2950:    return;
                   2951: }
                   2952: 
1.30      bertrand 2953: #ifdef _BROKEN_SIGINFO
                   2954: 
                   2955: #undef kill
                   2956: #undef pthread_kill
                   2957: 
                   2958: int
1.33      bertrand 2959: kill_broken_siginfo(pid_t pid, int signal)
1.30      bertrand 2960: {
1.33      bertrand 2961:    int                 ios;
                   2962: 
                   2963:    sem_t               *semaphore;
                   2964: 
                   2965:    unsigned char       *nom;
                   2966: 
1.30      bertrand 2967:    /*
                   2968:     * Lorsqu'on veut interrompre le processus pid, on ouvre le segment
                   2969:     * correspondant au processus en question et ou ajoute le pid dans la
                   2970:     * queue.
1.33      bertrand 2971:     *
                   2972:     * Le sémaphore global à tous les threads d'un même processus sert
                   2973:     * à garantir que les signaux seront traités dans l'ordre de ce qui est
                   2974:     * effectivement mis dans la queue.
1.30      bertrand 2975:     */
                   2976: 
1.33      bertrand 2977:    // Sémaphore acquis
                   2978: 
                   2979:    if ((nom = nom_semaphore(getpid(), nombre_queues)) == NULL)
                   2980:    {
                   2981:        return(-1);
                   2982:    }
                   2983: 
                   2984:    if ((semaphore = sem_open(nom, 0)) == SEM_FAILED)
                   2985:    {
                   2986:        free(nom);
                   2987:        return(-1);
                   2988:    }
                   2989: 
                   2990:    free(nom);
                   2991: 
                   2992:    if (sem_wait(semaphore) == -1)
                   2993:    {
                   2994:        return(-1);
                   2995:    }
                   2996: 
1.31      bertrand 2997:    if ((signal != 0) && (signal != SIGINT))
1.30      bertrand 2998:    {
                   2999:        if (queue_in(pid, signal) != 0)
                   3000:        {
1.33      bertrand 3001:            sem_post(semaphore);
                   3002:            sem_close(semaphore);
1.30      bertrand 3003:            return(-1);
                   3004:        }
                   3005:    }
                   3006: 
1.33      bertrand 3007:    ios = kill(pid, signal);
                   3008: 
                   3009:    // Sémaphore relâché
                   3010: 
                   3011:    sem_post(semaphore);
                   3012:    sem_close(semaphore);
                   3013: 
                   3014:    return(ios);
1.30      bertrand 3015: }
                   3016: 
                   3017: int
1.33      bertrand 3018: pthread_kill_broken_siginfo(pthread_t tid, int signal)
1.30      bertrand 3019: {
1.33      bertrand 3020:    int                 ios;
                   3021: 
                   3022:    sem_t               *semaphore;
                   3023: 
                   3024:    unsigned char       *nom;
                   3025: 
                   3026:    if ((nom = nom_semaphore(getpid(), nombre_queues)) == NULL)
                   3027:    {
                   3028:        return(-1);
                   3029:    }
                   3030: 
                   3031:    if ((semaphore = sem_open(nom, 0)) == SEM_FAILED)
                   3032:    {
                   3033:        free(nom);
                   3034:        return(-1);
                   3035:    }
                   3036: 
                   3037:    free(nom);
                   3038: 
                   3039:    if (sem_wait(semaphore) == -1)
                   3040:    {
                   3041:        return(-1);
                   3042:    }
                   3043: 
1.31      bertrand 3044:    if ((signal != 0) && (signal != SIGINT))
1.30      bertrand 3045:    {
                   3046:        if (queue_in(getpid(), signal) != 0)
                   3047:        {
1.33      bertrand 3048:            sem_post(semaphore);
                   3049:            sem_close(semaphore);
1.30      bertrand 3050:            return(-1);
                   3051:        }
                   3052:    }
                   3053: 
1.33      bertrand 3054:    ios = pthread_kill(tid, signal);
                   3055: 
                   3056:    sem_post(semaphore);
                   3057:    sem_close(semaphore);
                   3058: 
                   3059:    return(ios);
1.30      bertrand 3060: }
                   3061: 
                   3062: #endif
                   3063: 
1.1       bertrand 3064: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>