Annotation of rpl/src/rpl.h, revision 1.59

1.1       bertrand    1: /*
                      2: ================================================================================
1.49      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: 
                     23: #ifndef INCLUSION_RPL
                     24: #define INCLUSION_RPL
1.10      bertrand   25: 
1.1       bertrand   26: #define _GNU_SOURCE
1.32      bertrand   27: #define _POSIX_C_SOURCE        200112L
1.10      bertrand   28: #define _REENTRANT
                     29: 
1.32      bertrand   30: #ifdef Darwin
1.37      bertrand   31: #  define  _DARWIN_C_SOURCE
1.32      bertrand   32: #endif
                     33: 
1.56      bertrand   34: #ifdef OpenBSD
                     35: #  define _BSD_SOURCE
                     36: #endif
                     37: 
1.51      bertrand   38: #ifdef OS2
                     39: #  define _BSD_SOURCE
                     40: #  define _XOPEN_SOURCE    600
                     41: 
                     42: #  include <types.h>
                     43:    enum { SHUT_RD = 0, SHUT_WR, SHUT_RDWR };
                     44: #  define SHUT_RD      SHUT_RD
                     45: #  define SHUT_WR      SHUT_WR
                     46: #  define SHUT_RDWR    SHUT_RDWR
                     47: 
                     48: #  include "getaddrinfo-conv.h"
1.53      bertrand   49: 
                     50: #  define sched_yield(arg)
1.51      bertrand   51: #endif
                     52: 
1.37      bertrand   53: 
1.1       bertrand   54: /*
                     55: ================================================================================
                     56:   INCLUSIONS
                     57: ================================================================================
                     58: */
                     59: 
                     60: #include <stdio.h>
                     61: #include <stdlib.h>
                     62: #include <math.h>
                     63: #include <string.h>
                     64: #include <strings.h>
                     65: #include <syslog.h>
                     66: #include <errno.h>
1.18      bertrand   67: #include <stdarg.h>
1.1       bertrand   68: 
                     69: #ifndef RPLARGS
1.32      bertrand   70: #  include <sys/mman.h>
1.56      bertrand   71: #  include <sys/time.h>
1.1       bertrand   72: #  include <sys/resource.h>
                     73: #  include <sys/select.h>
                     74: #  include <sys/socket.h>
                     75: #  include <sys/stat.h>
                     76: #  include <sys/timeb.h>
                     77: #  include <sys/types.h>
                     78: #  include <sys/un.h>
                     79: #  include <sys/wait.h>
                     80: 
                     81: #  include <arpa/inet.h>
                     82: #  include <netinet/in.h>
                     83: #  include <netdb.h>
                     84: 
                     85: #  include <dlfcn.h>
                     86: #  include <fcntl.h>
                     87: #  include <pthread.h>
1.51      bertrand   88: 
                     89: #  ifdef OS2
                     90: #      undef pthread_mutexattr_settype
                     91: #      define pthread_mutexattr_settype(a, b)
                     92: #  endif
                     93: 
1.1       bertrand   94: #  include <pwd.h>
1.51      bertrand   95: 
1.57      bertrand   96: #  ifdef _BROKEN_SIGINFO
                     97: #      include <sys/ipc.h>
                     98: #      include <sys/shm.h>
                     99: #  endif
                    100: 
1.53      bertrand  101: #  ifndef SEMAPHORES_SYSV
1.51      bertrand  102: #      include <semaphore.h>
                    103: #  else
1.55      bertrand  104: #      ifdef OS2
                    105: #          define INCL_DOSSEMAPHORES
                    106: #          define INCL_DOSMEMMGR
                    107: #          define INCL_DOSERRORS
                    108: #          include <os2.h>
                    109: 
                    110:            typedef struct _OS2SEM
                    111:            {
                    112:                HMTX    hmtx;
                    113:                HEV     hev;
                    114:                ULONG   shared;
                    115:                ULONG   *cnt;
                    116:                ULONG   *nopened;
                    117:                ULONG   allocated;
                    118:            } sem_t;
                    119: #      else
1.57      bertrand  120: #          include <sys/ipc.h>
                    121: #          include <sys/sem.h>
1.59    ! bertrand  122:            typedef struct
        !           123:            {
        !           124:                int             sem;
        !           125:                unsigned char   *path;
        !           126:                pid_t           pid;
        !           127:            } sem_t;
1.55      bertrand  128: #      endif
                    129: 
1.53      bertrand  130: #      define SEM_FAILED   NULL
                    131: 
                    132:        sem_t *sem_open_SysV(const char *nom, int oflag, ...);
                    133:        int sem_init_SysV(sem_t *sem, int shared, unsigned int value);
                    134:        int sem_close_SysV(sem_t *sem);
                    135:        int sem_wait_SysV(sem_t *sem);
                    136:        int sem_trywait_SysV(sem_t *sem);
                    137:        int sem_post_SysV(sem_t *sem);
                    138:        int sem_getvalue_SysV(sem_t *sem, int *value);
                    139:        int sem_unlink_SysV(const char *nom);
                    140:        int sem_destroy_SysV(sem_t *sem);
1.51      bertrand  141: #  endif
                    142: 
1.1       bertrand  143: #  include <setjmp.h>
                    144: #  include <signal.h>
                    145: #  include <termios.h>
                    146: #  include <time.h>
                    147: #  include <unistd.h>
                    148: #  include <locale.h>
                    149: 
                    150: #  include "history.h"
                    151: #  include "readline.h"
                    152: #  include "termcap.h"
                    153: #  include "iconv.h"
                    154: 
1.13      bertrand  155: #  include "openssl/evp.h"
1.15      bertrand  156: #  include "sqlite3.h"
1.13      bertrand  157: 
1.1       bertrand  158: #  define HAVE_INLINE
                    159: #  define GSL_RANGE_CHECK_OFF
                    160: #  include "gsl/gsl_cdf.h"
                    161: #  include "gsl/gsl_cblas.h"
                    162: #  include "gsl/gsl_errno.h"
                    163: #  include "gsl/gsl_fft_complex.h"
                    164: #  include "gsl/gsl_permutation.h"
                    165: #  include "gsl/gsl_randist.h"
                    166: #  include "gsl/gsl_rng.h"
                    167: #  include "gsl/gsl_sf.h"
                    168: #endif
                    169: 
                    170: #ifdef SunOS
                    171: #  include <ieeefp.h>
                    172: #endif
                    173: 
1.23      bertrand  174: // Définition spécifique à Hurd
                    175: #ifndef PIPE_BUF
                    176: #  define fpathconf (".", _PC_PIPE_BUF)
                    177: #endif
                    178: 
1.1       bertrand  179: #ifdef MYSQL_SUPPORT
                    180: #   include <mysql.h>
                    181: #   define mysqlclose(arg)     mysql_close(arg.mysql)
                    182: #else
                    183: #   define mysqlclose(arg)
                    184: #endif
                    185: 
                    186: #ifdef POSTGRESQL_SUPPORT
                    187: #   include <libpq-fe.h>
                    188: #  define postgresqlclose(arg) PQfinish(arg.postgresql)
                    189: #else
                    190: #   define postgresqlclose(arg)
                    191: #endif
                    192: 
1.25      bertrand  193: #include "librplprototypes.h"
1.1       bertrand  194: 
1.56      bertrand  195: #ifndef UNIX_PATH_MAX
                    196:    struct sockaddr_un sizecheck;
                    197: #  define UNIX_PATH_MAX sizeof(sizecheck.sun_path)
                    198: #endif
                    199: 
1.57      bertrand  200: #ifdef _BROKEN_SIGINFO
                    201: #  define SIGHANDLER_ARGS  int signal
                    202: #  ifdef SA_SIGINFO
                    203: #      undef SA_SIGINFO
                    204: #  endif
                    205: #  define SA_SIGINFO   0
                    206: 
                    207: #  define kill(pid, signal)            rpl_kill(pid, signal)
                    208: #  define pthread_kill(tid, signal)    rpl_pthread_kill(tid, signal)
                    209:    int rpl_kill(pid_t pid, int signal);
                    210:    int rpl_pthread_kill(pthread_t tid, int signal);
                    211: #else
                    212: #  define SIGHANDLER_ARGS  int signal, siginfo_t *siginfo, void *context
                    213: #endif
                    214: 
                    215: #define ftok(path, proj) \
                    216:    ({ \
                    217:        key_t           key; \
                    218:        struct stat     s; \
                    219:        while(stat(path, &s) != 0); \
                    220:        errno = 0; \
                    221:        key = ftok(path, proj); \
                    222:        if (key != -1) \
                    223:            key |= ((((key_t) s.st_dev) & 0xFF) << 8) | \
                    224:                    ((((key_t) s.st_ino) & 0xFFFF) << 16); \
                    225:        key; \
                    226:    })
1.53      bertrand  227: 
                    228: /*
                    229: ================================================================================
                    230:   SÉMAPHORES
                    231: ================================================================================
                    232: */
                    233: 
                    234: #ifdef SEMAPHORES_SYSV
                    235: #  define sem_init(a, b, c)    sem_init_SysV(a, b, c)
                    236: #  define sem_destroy(a)       sem_destroy_SysV(a)
                    237: #  define sem_wait(a)          sem_wait_SysV(a)
                    238: #  define sem_trywait(a)       sem_trywait_SysV(a)
                    239: #  define sem_post(a)          sem_post_SysV(a)
                    240: #  define sem_getvalue(a, b)   sem_getvalue_SysV(a, b)
                    241: #  define sem_open(...)        sem_open_SysV(__VA_ARGS__)
                    242: #  define sem_close(a)         sem_close_SysV(a)
                    243: #  define sem_unlink(a)        sem_unlink_SysV(a)
                    244: #endif
                    245: 
                    246: 
1.1       bertrand  247: /*
                    248: ================================================================================
                    249:   SIGNAUX
                    250: ================================================================================
                    251: */
                    252: 
                    253: #ifndef RPLARGS
1.57      bertrand  254: 
                    255: // Signaux utilisés par défaut :
                    256: // SIGINT
                    257: // SIGTSTP
                    258: // SIGCONT
                    259: // SIGURG
                    260: // SIGPIPE
                    261: // SIGALRM
1.37      bertrand  262: 
1.27      bertrand  263: // Arrêt par STOP
1.1       bertrand  264: #  define SIGFSTOP                 SIGUSR1
1.27      bertrand  265: // Démarrage d'un processus fils
1.1       bertrand  266: #  define SIGSTART                 SIGUSR2
1.27      bertrand  267: // Injection de données
1.1       bertrand  268: #  define SIGINJECT                SIGQUIT
1.27      bertrand  269: // Arrêt général
1.57      bertrand  270: #  ifndef OpenBSD
                    271: // La libpthread d'OpenBSD utilise SIGPROF
                    272: #      define SIGABORT             SIGPROF
                    273: #  else
                    274: #      define SIGABORT             SIGTHR
                    275: #  endif
1.27      bertrand  276: // Arrêt d'un processus fils depuis autre chose que STOP
1.57      bertrand  277: #  if defined(Darwin) || defined(OpenBSD)
                    278: #      define SIGFABORT            SIGINFO
                    279: #  else
                    280: #      define SIGFABORT            SIGPOLL
                    281: #  endif
                    282: 
1.37      bertrand  283: // Nombre d'interruptions disponibles
1.1       bertrand  284: #  define d_NOMBRE_INTERRUPTIONS   64
                    285: #endif
                    286: 
                    287: /*
                    288: ================================================================================
                    289:   Granularité temporelle
                    290: ================================================================================
                    291: */
                    292: 
                    293: #ifndef RPLARGS
                    294: #  define GRANULARITE_us           10
                    295: #  define GRANULARITE_us_max       100000
                    296: #  define INCR_GRANULARITE(g) \
                    297:    do  g = 1000 * ((g >= (GRANULARITE_us_max * 1000)) \
                    298:            ? GRANULARITE_us_max : ((g / 1000) + GRANULARITE_us)); while(0)
                    299: #endif
                    300: 
                    301: /*
                    302: ================================================================================
                    303:   Options de debug
                    304: ================================================================================
                    305: */
                    306: 
                    307: #ifndef RPLARGS
                    308: #  define d_debug_pile_utilisateur         ((integer8) 0x1)
                    309: #  define d_debug_pile_systeme             ((integer8) 0x2)
                    310: #  define d_debug_appels_fonctions         ((integer8) 0x4)
                    311: #  define d_debug_processus                ((integer8) 0x8)
                    312: #  define d_debug_analyse                  ((integer8) 0x10)
                    313: #  define d_debug_fusible                  ((integer8) 0x20)
                    314: #  define d_debug_variables                ((integer8) 0x40)
                    315: #  define d_debug_fonctions_intrinseques   ((integer8) 0x80)
                    316: #  define d_debug_niveaux                  ((integer8) 0x100)
                    317: #  define d_conversion_RPN                 ((integer8) 0x200)
                    318: #  define d_traitement_interruption        ((integer8) 0x400)
                    319: #  define d_debug_signaux                  ((integer8) 0x800)
                    320: #endif
                    321: 
                    322: /*
                    323: ================================================================================
                    324:   TYPES
                    325: ================================================================================
                    326: */
                    327: 
                    328: typedef FILE                   file;
                    329: typedef unsigned char          t_8_bits;
                    330: 
                    331: #ifndef RPLARGS
1.51      bertrand  332: #  include "rpltypes-conv.h"
1.1       bertrand  333: #else
                    334: #  include "rpltypes.h"
                    335: #endif
                    336: 
                    337: /*
                    338: ================================================================================
                    339:   Variables globales
                    340: ================================================================================
                    341: */
                    342: 
                    343: #ifndef RPLARGS
1.22      bertrand  344: #  ifdef SEMAPHORES_NOMMES
                    345: #      define LONGUEUR_NOM_SEMAPHORE   64
                    346: #  endif
1.57      bertrand  347: 
1.1       bertrand  348: #  ifndef MAIN_RPL
1.57      bertrand  349: #      ifdef _BROKEN_SIGINFO
                    350:            extern int              *fifos_signaux;
                    351: #      endif
                    352: 
1.22      bertrand  353:        extern jmp_buf              contexte;
                    354:        extern jmp_buf              contexte_initial;
                    355: 
                    356: #      ifdef SEMAPHORES_NOMMES
                    357:        extern pthread_mutex_t      mutex_sem;
                    358: #      endif
1.1       bertrand  359: 
1.22      bertrand  360:        extern pthread_key_t        semaphore_fork_processus_courant;
1.1       bertrand  361: 
1.22      bertrand  362:        extern sem_t
                    363: #      ifdef SEMAPHORES_NOMMES
                    364:        *
                    365: #      endif
                    366:                                    semaphore_liste_threads;
                    367: 
                    368:        extern sem_t
                    369: #      ifdef SEMAPHORES_NOMMES
                    370:        *
                    371: #      endif
                    372:                                    semaphore_gestionnaires_signaux;
                    373: 
                    374:        extern sem_t
                    375: #      ifdef SEMAPHORES_NOMMES
                    376:        *
                    377: #      endif
                    378:                                    semaphore_gestionnaires_signaux_atomique;
                    379: 
                    380: #      ifdef SEMAPHORES_NOMMES
                    381:        // 0 -> liste_threads
                    382:        // 1 -> gestionnaire_signaux
                    383:        // 2 -> gestionnaire_signaux_atomique
                    384:        // 3 -> &((*s_etat_processus).semaphore_fork)
                    385:            extern unsigned char    noms_semaphores[4][LONGUEUR_NOM_SEMAPHORE];
                    386:            extern sem_t            *semaphores_nommes[4];
                    387: #      endif
1.1       bertrand  388: #  else
1.57      bertrand  389: #      ifdef _BROKEN_SIGINFO
                    390:            int                     *fifos_signaux;
                    391: #      endif
                    392: 
1.22      bertrand  393:        jmp_buf                     contexte;
                    394:        jmp_buf                     contexte_initial;
                    395: 
                    396: #      ifdef SEMAPHORES_NOMMES
                    397:        pthread_mutex_t             mutex_sem = PTHREAD_MUTEX_INITIALIZER;
                    398: #      endif
                    399: 
                    400:        pthread_key_t               semaphore_fork_processus_courant;
                    401: 
                    402:        sem_t
                    403: #      ifdef SEMAPHORES_NOMMES
                    404:        *
                    405: #      endif
                    406:                                    semaphore_liste_threads;
1.1       bertrand  407: 
1.22      bertrand  408:        sem_t
                    409: #      ifdef SEMAPHORES_NOMMES
                    410:        *
                    411: #      endif
                    412:                                    semaphore_gestionnaires_signaux;
1.1       bertrand  413: 
1.22      bertrand  414:        sem_t
                    415: #      ifdef SEMAPHORES_NOMMES
                    416:        *
                    417: #      endif
                    418:                                    semaphore_gestionnaires_signaux_atomique;
                    419: 
                    420: #      ifdef SEMAPHORES_NOMMES
                    421:            unsigned char           noms_semaphores[4][LONGUEUR_NOM_SEMAPHORE];
                    422:            sem_t                   *semaphores_nommes[4];
                    423: #      endif
1.1       bertrand  424: #  endif
                    425: #endif
                    426: 
1.22      bertrand  427: #ifdef SEMAPHORES_NOMMES
                    428: enum t_semaphore   { sem_liste_threads = 0,
                    429:        sem_gestionnaires_signaux = 1,
                    430:        sem_gestionnaires_signaux_atomique = 2,
                    431:        sem_fork = 3 };
                    432: 
                    433: sem_t *sem_init2(unsigned int valeur, enum t_semaphore semaphore);
                    434: int sem_destroy2(sem_t *semaphore_p, enum t_semaphore semaphore);
                    435: int sem_getvalue2(sem_t *semaphore, int *valeur);
                    436: 
                    437: #define sem_getvalue(semaphore, value) sem_getvalue2(semaphore, value)
                    438: #define sem_post(semaphore) \
                    439:        ({ int r; pthread_mutex_lock(&mutex_sem); \
                    440:        r = sem_post(semaphore), pthread_mutex_unlock(&mutex_sem); r; })
                    441: #define sem_wait(semaphore) \
                    442:        ({ int r; pthread_mutex_lock(&mutex_sem); \
                    443:        r = sem_wait(semaphore), pthread_mutex_unlock(&mutex_sem); r; })
                    444: #define sem_trywait(semaphore) \
                    445:        ({ int r; pthread_mutex_lock(&mutex_sem); \
                    446:        r = sem_trywait(semaphore), pthread_mutex_unlock(&mutex_sem); r; })
                    447: #endif
                    448: 
1.1       bertrand  449: /*
                    450: ================================================================================
                    451:   Macros
                    452: ================================================================================
                    453: */
                    454: 
                    455: // Par défaut, tout est redirigé vers stderr sauf indication explicite de
                    456: // stdout.
                    457: 
                    458: #define printf(...) transliterated_fprintf(s_etat_processus, \
                    459:            stderr, __VA_ARGS__)
                    460: #define fprintf(flux, ...) transliterated_fprintf(s_etat_processus, \
                    461:            flux, __VA_ARGS__)
                    462: #define uprintf(...) transliterated_fprintf(NULL, \
                    463:            stderr, __VA_ARGS__)
                    464: #define ufprintf(flux, ...) transliterated_fprintf(NULL, \
                    465:            flux, __VA_ARGS__)
                    466: 
                    467: // Tous les messages pour DISP, INPUT et les E/S par readline sont sur stderr.
                    468: // Cela évite aux messages envoyés par les gestionnaires de signaux d'être
                    469: // indéfiniment bloqués.
                    470: 
                    471: #ifdef SunOS
                    472: #  define fopen(...) ({ FILE *desc; \
                    473:            while((desc = fopen(__VA_ARGS__)) == NULL) \
                    474:            { if ((errno != EINTR) && (errno != 0)) break; } desc; })
                    475: #  define fclose(...) ({ int ios; \
                    476:            while((ios = fclose(__VA_ARGS__)) != 0) \
                    477:            { if ((errno != EINTR) && (errno != 0)) break; } ios; })
                    478: #  define fread(...) ({ int ios; \
                    479:            while((ios = fread(__VA_ARGS__)) < 0) \
                    480:            { if ((errno != EINTR) && (errno != 0)) break; } ios; })
                    481: #  define fflush(flux) ({ int ios; \
                    482:            while((ios = fflush((flux == stdout) ? stderr : flux)) != 0) \
                    483:            { if ((errno != EINTR) && (errno != 0)) break; } ios; })
                    484: #  define sem_open(...) ({ sem_t *semaphore; \
                    485:            while((semaphore = sem_open(__VA_ARGS__)) == SEM_FAILED) \
                    486:            { if (errno != EINTR) break; }  semaphore; })
                    487: #else // !SunOS
                    488: #  define fflush(flux) fflush((flux == stdout) ? stderr : flux)
                    489: #endif
                    490: 
                    491: // Ajout d'un timeout sur les fonctions pipe() pour éviter une erreur
                    492: // système dans le cas où l'on a atteint le nombre maximale de fichiers
                    493: // ouverts.
                    494: 
                    495: #define pipe(descripteurs) \
                    496:    ({ \
                    497:        struct timespec temporisation; \
                    498:        int erreur, nombre_echecs; \
                    499:        nombre_echecs = 0; \
                    500:        do \
                    501:        { \
                    502:            if ((erreur = pipe(descripteurs)) == 0) break; \
                    503:            nombre_echecs++; \
                    504:            temporisation.tv_sec = 0; \
                    505:            temporisation.tv_nsec = ((long) 1000000000) * rand(); \
                    506:            nanosleep(&temporisation, NULL); \
                    507:        } while(nombre_echecs < 100); \
                    508:        erreur; \
                    509:     })
                    510: 
                    511: // Redéfinition de abs pour un fonctionnement en entier de type long long int
                    512: 
1.51      bertrand  513: #ifdef __GNUC__
1.1       bertrand  514: #  define abs(i) ({ typeof(i) _i; _i = (i); (_i >= 0) ? _i : -_i; })
                    515: // typeof() est une extension de gcc, mais est présent sur d'autres compilateurs
                    516: // comme Sun Studio. Dans le cas où typeof() n'existe pas, il est possible
                    517: // d'utiliser la macro suivante, mais elle possède un effet de bord dû à
                    518: // l'évaluation multiple de l'argument.
                    519: #else
                    520: #  define abs(i) (((i) >= 0) ? (i) : (-i))
                    521: #endif
                    522: 
1.9       bertrand  523: #define NOTICE(m) \
                    524:    do \
                    525:    { \
                    526:        ufprintf(stderr, "[%d-%llu] %s() from %s at line %d: %s\n", \
                    527:                getpid(), (unsigned long long) pthread_self(), \
                    528:                __FUNCTION__, __FILE__, __LINE__, m); \
                    529:        fflush(stderr); \
                    530:    } while(0)
                    531: 
                    532: #ifdef __GLIBC__
                    533: #include <execinfo.h>
1.34      bertrand  534: #define __BACKTRACE
1.1       bertrand  535: #define BACKTRACE(n) \
                    536:    do \
                    537:    { \
                    538:        void            *buffer[n]; \
                    539:        int             nb, i; \
                    540:        char            **appels; \
                    541:        pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; \
                    542:        nb = backtrace(buffer, n); \
                    543:        appels = backtrace_symbols(buffer, nb); \
                    544:        pthread_mutex_lock(&mutex); \
                    545:        uprintf("[%d-%llu] BACKTRACE <%s()> at line #%d\n", \
                    546:                getpid(), pthread_self(), __FUNCTION__, __LINE__); \
                    547:        if (appels != NULL) \
                    548:        { \
                    549:            for(i = 0; i < nb; i++) \
1.23      bertrand  550:                uprintf("    %s\n", appels[i]); \
1.1       bertrand  551:            free(appels); \
                    552:        } \
                    553:        else \
                    554:            uprintf("Nullified backtrace\n"); \
                    555:        uprintf("[%d-%llu] END OF BACKTRACE\n", getpid(), pthread_self()); \
                    556:        fflush(stdout); \
                    557:        pthread_mutex_unlock(&mutex); \
                    558:    } while(0)
1.9       bertrand  559: #else
                    560: #define BACKTRACE(n) NOTICE("BACKTRACE only defined in glibc")
                    561: #endif
1.1       bertrand  562: 
1.35      bertrand  563: #ifdef __BACKTRACE
                    564: #  define BUG(b, ...) \
                    565:            do { if (b) { uprintf("[%d] BUG! <%s()> at line #%d of %s\n", \
                    566:            (int) getpid(), __FUNCTION__, __LINE__, __FILE__); \
                    567:            __VA_ARGS__; fflush(stdout); \
                    568:            BACKTRACE(64); \
                    569:            pthread_kill(pthread_self(), SIGBUS); }} while(0)
                    570: #else
                    571: #  define BUG(b, ...) \
                    572:            do { if (b) { uprintf("[%d] BUG! <%s()> at line #%d of %s\n", \
                    573:            (int) getpid(), __FUNCTION__, __LINE__, __FILE__); \
                    574:            __VA_ARGS__; fflush(stdout); \
                    575:            pthread_kill(pthread_self(), SIGBUS); }} while(0)
                    576: #endif
                    577: 
1.1       bertrand  578: 
                    579: /*
                    580: ================================================================================
                    581:   Affichage des points de retour des fonctions
                    582: ================================================================================
                    583: */
                    584: 
1.9       bertrand  585: #ifdef DEBUG_MEMOIRE
1.35      bertrand  586: void analyse_post_mortem();
1.9       bertrand  587: void *debug_memoire_ajout(size_t taille, const unsigned char *fonction,
                    588:        unsigned long ligne, const unsigned char *argument);
1.39      bertrand  589: void debug_memoire_initialisation();
1.9       bertrand  590: void *debug_memoire_modification(void *pointeur, size_t taille,
                    591:        const unsigned char *fonction, unsigned long ligne,
                    592:        const unsigned char *argument);
                    593: void debug_memoire_retrait(void *ptr);
1.35      bertrand  594: void debug_memoire_verification();
1.9       bertrand  595: 
1.39      bertrand  596: pid_t debug_fork();
                    597: 
1.9       bertrand  598: #define malloc(s) debug_memoire_ajout(s, __FUNCTION__, __LINE__, #s)
                    599: #define free(s) debug_memoire_retrait(s)
                    600: #define realloc(s, t) debug_memoire_modification(s, t, \
                    601:            __FUNCTION__, __LINE__, #t)
1.39      bertrand  602: #define fork() debug_fork()
1.9       bertrand  603: #endif
                    604: 
1.1       bertrand  605: #ifdef DEBUG_RETURN
                    606: #define return uprintf("[%d] Return from <%s()> at line #%d " \
                    607:        "(%s [%d])\n", (int) getpid(), __FUNCTION__, \
1.9       bertrand  608:        __LINE__, strerror(errno), errno); fflush(stdout); errno = 0; return
1.1       bertrand  609: #endif
                    610: 
                    611: #ifdef DEBUG_MUTEX
                    612: #define pthread_mutex_lock(mutex) uprintf("[%d-%llu] Mutex %s (%p) " \
                    613:        "locking at %s() " \
                    614:        "line #%d\n", (int) getpid(), (unsigned long long) pthread_self(), \
                    615:        #mutex, mutex, __FUNCTION__, __LINE__), fflush(stdout), \
                    616:        pthread_mutex_lock(mutex)
                    617: #define pthread_mutex_unlock(mutex) uprintf("[%d-%llu] Mutex %s (%p) " \
                    618:        "unlocking at " \
                    619:        "%s() line #%d\n", (int) getpid(), (unsigned long long) \
                    620:        pthread_self(), #mutex, mutex, __FUNCTION__, __LINE__), \
                    621:        fflush(stdout), \
                    622:        pthread_mutex_unlock(mutex)
                    623: #endif
                    624: 
                    625: #ifdef DEBUG_SEMAPHORES
                    626: #define sem_wait(a) ({ int value; sem_getvalue(a, &value); \
                    627:        uprintf("[%d-%llu] Semaphore %s (%p) "\
                    628:        "waiting at %s() " \
                    629:        "line #%d\n", (int) getpid(), (unsigned long long) pthread_self(), \
                    630:        #a, a, __FUNCTION__, __LINE__), fflush(stdout); \
                    631:        if (value > 1) BUG(1, uprintf("Value %d\n", value)); sem_wait(a); })
                    632: #define sem_post(a) ({ int value; sem_getvalue(a, &value); \
                    633:        uprintf("[%d-%llu] Semaphore %s (%p) "\
                    634:        "posting at %s() " \
                    635:        "line #%d\n", (int) getpid(), (unsigned long long) pthread_self(), \
                    636:        #a, a, __FUNCTION__, __LINE__), fflush(stdout); \
                    637:        if (value > 0) BUG(1, uprintf("Value %d\n", value)); sem_post(a); })
                    638: #define sem_destroy(a) ({ int value; sem_getvalue(a, &value); \
                    639:        if (value == 0) BUG(1, uprintf("Value %d\n", value)); sem_destroy(a); })
                    640: #endif
                    641: 
                    642: 
                    643: /*
                    644: ================================================================================
                    645:   DEFINIONS
                    646: ================================================================================
                    647: */
                    648: 
                    649: /*
                    650: --------------------------------------------------------------------------------
                    651:   Valeurs
                    652: --------------------------------------------------------------------------------
                    653: */
                    654: 
                    655: #define d_faux                 ((logical1) 0L)
                    656: #define d_vrai                 ((logical1) -1L)
                    657: 
                    658: #define d_absence_erreur       ((logical1) d_faux)
                    659: #define d_erreur               ((logical1) d_vrai)
                    660: 
1.31      bertrand  661: #define d_code_fin_chaine                  '\0'
                    662: #define d_code_espace                      ' '
                    663: #define d_code_retour_chariot              '\n'
                    664: #define d_code_tabulation                  '\t'
                    665: #define d_longueur_maximale_instruction        16
1.1       bertrand  666: 
                    667: #define d_INT                  "integer"
                    668: #define    d_REL                   "real"
                    669: #define d_CPL                  "complex"
                    670: #define d_VIN                  "[ integer ]"
                    671: #define d_VRL                  "[ real ]"
                    672: #define d_VCX                  "[ complex ]"
                    673: #define d_MIN                  "[[ integer ]]"
                    674: #define d_MRL                  "[[ real ]]"
                    675: #define d_MCX                  "[[ complex ]]"
                    676: #define d_BIN                  "# binary[bodh]"
                    677: #define d_NOM                  "'name'"
                    678: #define d_CHN                  "\"string\""
                    679: #define d_LST                  "{ list }"
                    680: #define d_ALG                  "'algebraic'"
                    681: #define d_RPN                  "<< RPN >>"
                    682: #define d_FCH                  "File $n { format }"
                    683: #define d_SLB                  "Library $n"
                    684: #define d_SQL                  "Sql $n (type)"
                    685: #define d_PRC                  "Process $n"
                    686: #define d_SCK                  "Socket $n { format }"
                    687: #define d_SPH                  "Semaphore $n 'name'"
                    688: #define d_TAB                  "<[ table ]>"
                    689: #define d_MTX                  "Mutex $n"
                    690: 
                    691: /*
                    692: --------------------------------------------------------------------------------
                    693:   Paramètres du système
                    694: --------------------------------------------------------------------------------
                    695: */
                    696: 
                    697: #ifndef RPLARGS
                    698: #  define ds_beep                              ""
                    699: #  define ds_fichier_historique                ".RPL2_history"
                    700: #  define ds_imposition_separateur_decimal     d_vrai
                    701: #  define ds_longueur_historique               256
                    702: #  define ds_nombre_maximum_fichiers_ouverts   65536
                    703: #  define ds_preprocesseur                     "rplpp " \
                    704:                                                    "--nostdinc -C 2> /dev/null"
                    705: #  define ds_rplcore                           "rpl-core"
                    706: #  define ds_rplprofile                        "rpl-profile"
                    707: #  define ds_sdat                              "SDAT"
                    708: #endif
                    709: 
                    710: /*
                    711: --------------------------------------------------------------------------------
                    712:   Erreurs système
                    713: --------------------------------------------------------------------------------
                    714: */
                    715: 
1.36      bertrand  716: #ifdef DEBUG_ERREURS
                    717: #  ifdef MESSAGES
                    718: #      define __erreur(i)  i
1.59    ! bertrand  719: #      define __erreur_(i) i
1.36      bertrand  720: #  else
1.59    ! bertrand  721: #      undef _ERREURS_VARIABLES
        !           722: #      ifdef _ERREURS_VARIABLES
        !           723: #          define __erreur_(i) __erreur(i)
        !           724: #      else
        !           725: #          define __erreur_(i) i
        !           726: #      endif
1.36      bertrand  727: #      define __erreur(i)  ({ if (strstr(__FUNCTION__, "recherche_variable") \
1.57      bertrand  728:                == NULL) ufprintf(stderr, "ERROR %d AT %s() LINE %d\n", \
1.36      bertrand  729:                i, __FUNCTION__, __LINE__); i; })
                    730: #  endif
                    731: #else
                    732: #  define __erreur(i)  i
1.59    ! bertrand  733: #  define __erreur_(i) i
1.36      bertrand  734: #endif
                    735: 
1.1       bertrand  736: 
                    737: // -1 : erreur provoquée par une bibliothèque externe
                    738: #ifndef RPLARGS
                    739: #  define d_es                                 2000
1.36      bertrand  740: #  define d_es_allocation_memoire              __erreur(2001)
1.59    ! bertrand  741: #  define d_es_variable_introuvable            __erreur_(2002)
1.36      bertrand  742: #  define d_es_pile_vide                       __erreur(2003)
                    743: #  define d_es_end_incoherent                  __erreur(2004)
                    744: #  define d_es_peripherique_stdin              __erreur(2005)
                    745: #  define d_es_erreur_fichier                  __erreur(2006)
                    746: #  define d_es_execution_bibliotheque          __erreur(2007)
                    747: #  define d_es_signal                          __erreur(2008)
                    748: #  define d_es_processus                       __erreur(2009)
                    749: #  define d_es_pile_operationnelle_vide        __erreur(2010)
                    750: #  define d_es_nombre_max_descripteurs         __erreur(2011)
                    751: #  define d_es_interruption_invalide           __erreur(2012)
                    752: #  define d_es_contexte                        __erreur(2013)
                    753: #  define d_es_somme_controle                  __erreur(2014)
1.1       bertrand  754: #endif
                    755: 
                    756: /*
                    757: --------------------------------------------------------------------------------
                    758:   Exceptions
                    759: --------------------------------------------------------------------------------
                    760: */
                    761: 
                    762: #ifndef RPLARGS
                    763: #  define d_ep                                 1000
1.36      bertrand  764: #  define d_ep_division_par_zero               __erreur(1001)
                    765: #  define d_ep_matrice_non_inversible          __erreur(1002)
                    766: #  define d_ep_resultat_indefini               __erreur(1003)
                    767: #  define d_ep_underflow                       __erreur(1004)
                    768: #  define d_ep_overflow                        __erreur(1005)
                    769: #  define d_ep_domaine_definition              __erreur(1006)
                    770: #  define d_ep_perte_precision                 __erreur(1007)
                    771: #  define d_ep_decomposition_QR                __erreur(1008)
                    772: #  define d_ep_matrice_non_definie_positive    __erreur(1009)
                    773: #  define d_ep_decomposition_QZ                __erreur(1010)
                    774: #  define d_ep_decomposition_SVD               __erreur(1011)
1.1       bertrand  775: #endif
                    776: 
                    777: /*
                    778: --------------------------------------------------------------------------------
                    779:   Erreurs de compilation
                    780: --------------------------------------------------------------------------------
                    781: */
                    782: 
                    783: #ifndef RPLARGS
                    784: #  define d_ec                                 3000
1.36      bertrand  785: #  define d_ec_niveau_definition_negatif       __erreur(3001)
                    786: #  define d_ec_nom_definition_invalide         __erreur(3002)
                    787: #  define d_ec_erreur_boucle_definie           __erreur(3003)
                    788: #  define d_ec_erreur_instruction_end          __erreur(3004)
                    789: #  define d_ec_erreur_instruction_until        __erreur(3005)
                    790: #  define d_ec_source_incoherent               __erreur(3006)
                    791: #  define d_ec_erreur_instruction_while        __erreur(3007)
                    792: #  define d_ec_erreur_instruction_then         __erreur(3008)
                    793: #  define d_ec_erreur_instruction_else         __erreur(3009)
                    794: #  define d_ec_erreur_instruction_elseif       __erreur(3010)
                    795: #  define d_ec_erreur_instruction_select       __erreur(3011)
                    796: #  define d_ec_erreur_instruction_case         __erreur(3012)
1.1       bertrand  797: #endif
                    798: 
                    799: /*
                    800: --------------------------------------------------------------------------------
                    801:   Erreurs à l'exécution
                    802: --------------------------------------------------------------------------------
                    803: */
                    804: 
                    805: // -1 : erreur provoquée par une bibliothèque externe
                    806: #ifndef RPLARGS
                    807: #  define d_ex                                 0
1.36      bertrand  808: #  define d_ex_pile_vide                       __erreur(1)
                    809: #  define d_ex_manque_argument                 __erreur(2)
                    810: #  define d_ex_argument_invalide               __erreur(3)
                    811: #  define d_ex_erreur_type_argument            __erreur(4)
                    812: #  define d_ex_nom_reserve                     __erreur(5)
                    813: #  define d_ex_nombre_arguments                __erreur(6)
                    814: #  define d_ex_dimensions_invalides            __erreur(7)
                    815: #  define d_ex_expression_invalide             __erreur(8)
                    816: #  define d_ex_absence_graphique_courant       __erreur(9)
                    817: #  define d_ex_erreur_traitement_condition     __erreur(10)
                    818: #  define d_ex_erreur_traitement_boucle        __erreur(11)
1.59    ! bertrand  819: #  define d_ex_variable_non_definie            __erreur_(12)
1.36      bertrand  820: #  define d_ex_drapeau_inexistant              __erreur(13)
                    821: #  define d_ex_nom_invalide                    __erreur(14)
                    822: #  define d_ex_element_inexistant              __erreur(15)
                    823: #  define d_ex_absence_variable                __erreur(16)
                    824: #  define d_ex_erreur_evaluation               __erreur(17)
                    825: #  define d_ex_semaphore                       __erreur(18)
                    826: #  define d_ex_longueur_fft                    __erreur(19)
                    827: #  define d_ex_queue_impression                __erreur(20)
                    828: #  define d_ex_type_trace_invalide             __erreur(21)
                    829: #  define d_ex_erreur_fichier                  __erreur(22)
                    830: #  define d_ex_absence_equation                __erreur(23)
                    831: #  define d_ex_erreur_bibliotheque             __erreur(24)
                    832: #  define d_ex_execution_bibliotheque          __erreur(25)
                    833: #  define d_ex_stop                            __erreur(26)
                    834: #  define d_ex_matrice_statistique_invalide    __erreur(27)
                    835: #  define d_ex_dimensions_matrice_statistique  __erreur(28)
                    836: #  define d_ex_absence_observations            __erreur(29)
                    837: #  define d_ex_statistiques_echantillon        __erreur(30)
                    838: #  define d_ex_observations_inexistantes       __erreur(31)
                    839: #  define d_ex_syntaxe                         __erreur(32)
                    840: #  define d_ex_cycle_hors_boucle               __erreur(33)
                    841: #  define d_ex_conversion_unite                __erreur(34)
                    842: #  define d_ex_erreur_parametre_fichier        __erreur(35)
                    843: #  define d_ex_erreur_acces_fichier            __erreur(36)
                    844: #  define d_ex_erreur_requete_fichier          __erreur(37)
                    845: #  define d_ex_erreur_format_fichier           __erreur(38)
                    846: #  define d_ex_fichier_verrouille              __erreur(39)
                    847: #  define d_ex_verrou_indefini                 __erreur(40)
                    848: #  define d_ex_fin_de_fichier_atteinte         __erreur(41)
                    849: #  define d_ex_debut_de_fichier_atteint        __erreur(42)
                    850: #  define d_ex_erreur_type_fichier             __erreur(43)
                    851: #  define d_ex_fichier_vide                    __erreur(44)
                    852: #  define d_ex_dimensions_differentes          __erreur(45)
                    853: #  define d_ex_routines_mathematiques          __erreur(46)
                    854: #  define d_ex_exit_hors_boucle                __erreur(47)
                    855: #  define d_ex_longueur_dft                    __erreur(48)
                    856: #  define d_ex_contexte                        __erreur(49)
                    857: #  define d_ex_processus                       __erreur(50)
                    858: #  define d_ex_image_processus                 __erreur(51)
                    859: #  define d_ex_erreur_sql                      __erreur(52)
                    860: #  define d_ex_variable_verrouillee            __erreur(53)
                    861: #  define d_ex_variable_volatile               __erreur(54)
                    862: #  define d_ex_erreur_processus                __erreur(55)
                    863: #  define d_ex_erreur_impression               __erreur(56)
                    864: #  define d_ex_nombre_arguments_fonction       __erreur(57)
                    865: #  define d_ex_fonction_indisponible           __erreur(58)
                    866: #  define d_ex_bibliotheque_chargee            __erreur(59)
                    867: #  define d_ex_aucun_symbole                   __erreur(60)
                    868: #  define d_ex_definition_ambigue              __erreur(61)
                    869: #  define d_ex_fichier_hors_contexte           __erreur(62)
                    870: #  define d_ex_socket_en_ecoute                __erreur(63)
                    871: #  define d_ex_interruption_invalide           __erreur(64)
                    872: #  define d_ex_erreur_transcodage              __erreur(65)
                    873: #  define d_ex_absence_processus_pere          __erreur(66)
                    874: #  define d_ex_creation_variable               __erreur(67)
                    875: #  define d_ex_fusible                         __erreur(68)
                    876: #  define d_ex_iswi_hors_interruption          __erreur(69)
                    877: #  define d_ex_daemon                          __erreur(70)
                    878: #  define d_ex_mutex                           __erreur(71)
                    879: #  define d_ex_variable_statique_partagee      __erreur(72)
                    880: #  define d_ex_variable_partagee               __erreur(73)
                    881: #  define d_ex_graphique_memorise              __erreur(74)
                    882: #  define d_ex_matrice_non_diagonale           __erreur(75)
                    883: #  define d_ex_locales                         __erreur(76)
                    884: #  define d_ex_representation                  __erreur(77)
                    885: #  define d_ex_erreur_profilage                __erreur(78)
                    886: #  define d_ex_enregistrement_inexistant       __erreur(79)
                    887: #  define d_ex_clef_inexistante                __erreur(80)
                    888: #  define d_ex_nom_implicite                   __erreur(81)
1.39      bertrand  889: #  define d_ex_version_bibliotheque            __erreur(82)
1.1       bertrand  890: #endif
                    891: 
                    892: 
                    893: /*
                    894: ================================================================================
                    895:   STRUCTURES
                    896: ================================================================================
                    897: */
                    898: 
                    899: /*
                    900: --------------------------------------------------------------------------------
                    901:   Structure objet
                    902: --------------------------------------------------------------------------------
                    903: */
                    904: 
1.55      bertrand  905: #ifdef MIN
                    906: #  undef MIN
                    907: #endif
                    908: 
                    909: #ifdef MAX
                    910: #  undef MAX
                    911: #endif
                    912: 
                    913: #define    ADR __RPL_ADR
                    914: #define    ALG __RPL_ALG
                    915: #define BIN    __RPL_BIN
                    916: #define CHN    __RPL_CHN
                    917: #define CPL    __RPL_CPL
                    918: #define FCH    __RPL_FCH
                    919: #define FCT    __RPL_FCT
                    920: #define INT    __RPL_INT
                    921: #define LST    __RPL_LST
                    922: #define MCX    __RPL_MCX
                    923: #define MIN    __RPL_MIN
                    924: #define MRL    __RPL_MRL
                    925: #define MTX    __RPL_MTX
                    926: #define NOM    __RPL_NOM
                    927: #define NON    __RPL_NON
                    928: #define PRC    __RPL_PRC
                    929: #define REL    __RPL_REL
                    930: #define RPN    __RPL_RPN
                    931: #define SCK    __RPL_SCK
                    932: #define SLB    __RPL_SLB
                    933: #define SPH __RPL_SPH
                    934: #define SQL    __RPL_SQL
                    935: #define TBL __RPL_TBL
                    936: #define VCX    __RPL_VCX
                    937: #define VIN    __RPL_VIN
                    938: #define VRL    __RPL_VRL
                    939: 
                    940: 
1.1       bertrand  941: enum t_type        { ADR = 0, ALG, BIN, CHN, CPL, FCH, FCT, INT, LST,
                    942:                MCX, MIN, MRL, MTX, NOM, NON, PRC, REL, RPN, SCK,
                    943:                SLB, SPH, SQL, TBL, VCX, VIN, VRL };
                    944: 
                    945:    /*
                    946:    ADR : adresse sur 32 bits (au moins) non signés (unsigned long)
                    947:            Adresse d'une définition à interpréter.
                    948: 
                    949:    ALG : expression algébrique (struct_liste_chainee *)
                    950:            La liste chaînée contient la définition convertie en notation
                    951:            polonaise inversée. Ce type diffère du type 'RPN' au niveau
                    952:            du format de sortie (notation algébrique).
                    953: 
                    954:    BIN : entier binaire sur 64 bits (unsigned integer8 *)
                    955:            Sans objet.
                    956:            Type C/Fortran : unsigned integer8
                    957: 
                    958:    CHN : chaine de caracteres (character*(*), unsigned char *)
                    959:            Sans objet.
                    960: 
                    961:    CPL : complexe sur 2*64 bits (complex*16, struct_complexe16 *)
                    962:            Sans objet.
                    963:            Type C/Fortran : complex16
                    964: 
                    965:    FCH : descripteur de fichier (struct_fichier *).
                    966: 
                    967:    FCT : déclaration d'une fonction et de son nombre d'arguments
                    968:            (struct_fonction *). Ce type n'est nécessaire que dans le
                    969:            traitement des types 'ALG' et 'RPN'.
                    970: 
                    971:    INT : entier sur 64 bits (integer*8, integer8 *)
                    972:            Sans objet.
                    973:            Type C/Fortran : integer8
                    974: 
                    975:    LST : liste (struct_liste_chainee *)
                    976:            Les objets sont enregistrés sous forme de liste chaînée récursive.
                    977:            Cela permet de traiter des tableaux de données hétérogènes de
                    978:            grandes dimensions. Le nombre de dimensions maximal est fixé par
                    979:            la mémoire de la station.
                    980: 
                    981:    MCX : matrice de complexes (struct_matrice *)
                    982:            Sans objet.
                    983: 
                    984:    MIN : matrice d'entiers (struct_matrice *)
                    985:            Sans objet.
                    986: 
                    987:    MRL : matrice de reels (struct_matrice *)
                    988:            Sans objet.
                    989: 
                    990:    MTX : mutex (struct_mutex *)
                    991:            Sans objet.
                    992: 
                    993:    NOM : nom de variable (struct_nom *)
                    994:            Sans objet.
                    995: 
                    996:    PRC : processus (struct_processus_fils *)
                    997:            Sans objet.
                    998: 
                    999:    REL : reel sur 64 bits (real*8, real8 *)
                   1000:            Sans objet.
                   1001: 
                   1002:    RPN : definition (struct_liste_chainee *)
                   1003:            Ce type diffère du type 'ALG' au niveau du format de sortie
                   1004:            (notation polonaise inversée).
                   1005: 
                   1006:    SCK : socket (struct_socket *)
                   1007: 
                   1008:    SLB : bibliothèque dynamique partagée (struct_bibliotheque *) 
                   1009:            Sans objet.
                   1010: 
                   1011:    SPH : sémaphore nommé (struct_semaphore *)
                   1012: 
                   1013:    SQL : connecteur sur une base de données SQL (struct_connecteur_sql *)
                   1014: 
                   1015:    TBL : tableau multidimensionnel d'objets (struct_tableau *).
                   1016: 
                   1017:    VCX : vecteur de complexes (struct_vecteur *)
                   1018:            Sans objet.
                   1019: 
                   1020:    VIN : vecteur d'entiers (struct_vecteur *)
                   1021:            Sans objet.
                   1022: 
                   1023:    VRL : vecteur de reels (struct_vecteur *)
                   1024:            Sans objet.
                   1025:    */
                   1026: 
                   1027: typedef struct objet
                   1028: {
                   1029:    enum t_type         type;
                   1030: 
                   1031:    volatile long       nombre_occurrences;
                   1032: 
                   1033:    pthread_mutex_t     mutex;
                   1034: 
                   1035:    void                *objet;
                   1036: } struct_objet;
                   1037: 
                   1038: 
                   1039: /*
                   1040: --------------------------------------------------------------------------------
                   1041:   Structure fichier
                   1042: --------------------------------------------------------------------------------
                   1043: */
                   1044: 
                   1045: #ifndef RPLARGS
                   1046: typedef struct fichier
                   1047: {
                   1048:    unsigned long               descripteur;
                   1049: 
                   1050:    unsigned char               acces;          /* S/D/I */
                   1051:    unsigned char               binaire;        /* Y/N/F */
                   1052:    unsigned char               ouverture;
                   1053:    unsigned char               protection;
                   1054:    unsigned char               *nom;
                   1055: 
                   1056:    struct_objet                *format;
                   1057: 
                   1058:    pid_t                       pid;
                   1059:    pthread_t                   tid;
                   1060: 
                   1061:    integer8                    position_clef;
                   1062: } struct_fichier;
                   1063: #endif
                   1064: 
                   1065: 
                   1066: /*
                   1067: --------------------------------------------------------------------------------
                   1068:   Structure mutex
                   1069: --------------------------------------------------------------------------------
                   1070: */
                   1071: 
                   1072: #ifndef RPLARGS
                   1073: typedef struct rpl_mutex
                   1074: {
                   1075:    pthread_mutex_t     mutex;
                   1076: } struct_mutex;
                   1077: #endif
                   1078: 
                   1079: 
                   1080: /*
                   1081: --------------------------------------------------------------------------------
                   1082:   Structure sémaphore
                   1083: --------------------------------------------------------------------------------
                   1084: */
                   1085: 
                   1086: #ifndef RPLARGS
                   1087: typedef struct semaphore
                   1088: {
                   1089:    unsigned char   *nom;
                   1090:    sem_t           *semaphore;
                   1091: } struct_semaphore;
                   1092: #endif
                   1093: 
                   1094: 
                   1095: /*
                   1096: --------------------------------------------------------------------------------
                   1097:   Structure marque
                   1098: --------------------------------------------------------------------------------
                   1099: */
                   1100: 
                   1101: #ifndef RPLARGS
                   1102: typedef struct marque
                   1103: {
                   1104:    unsigned char       *label;
                   1105:    unsigned char       *position;
                   1106: 
                   1107:    struct marque       *suivant;
                   1108: } struct_marque;
                   1109: #endif
                   1110: 
                   1111: 
                   1112: /*
                   1113: --------------------------------------------------------------------------------
                   1114:   Structure bibliothèque
                   1115: --------------------------------------------------------------------------------
                   1116: */
                   1117: 
                   1118: #ifndef RPLARGS
                   1119: typedef struct bibliotheque
                   1120: {
                   1121:    void                        *descripteur;
                   1122: 
                   1123:    pid_t                       pid;
                   1124:    pthread_t                   tid;
                   1125: 
                   1126:    unsigned char               *nom;
                   1127: } struct_bibliotheque;
                   1128: #endif
                   1129: 
                   1130: 
                   1131: /*
                   1132: --------------------------------------------------------------------------------
                   1133:   Structure descripteur fichier
                   1134: --------------------------------------------------------------------------------
                   1135: */
                   1136: 
                   1137: #ifndef RPLARGS
                   1138: typedef struct descripteur_fichier
                   1139: {
                   1140:    unsigned long               identifiant;
                   1141: 
                   1142:    unsigned char               effacement;
1.15      bertrand 1143:    unsigned char               type; // C (file *) ou S (sqlite *)
1.1       bertrand 1144:    unsigned char               *nom;
                   1145: 
                   1146:    pid_t                       pid;
                   1147:    pthread_t                   tid;
                   1148: 
1.15      bertrand 1149:    file                        *descripteur_c;
                   1150:    sqlite3                     *descripteur_sqlite;
1.1       bertrand 1151: } struct_descripteur_fichier;
                   1152: #endif
                   1153: 
                   1154: 
                   1155: /*
                   1156: --------------------------------------------------------------------------------
                   1157:   Structure connecteur SQL
                   1158: --------------------------------------------------------------------------------
                   1159: */
                   1160: 
                   1161: #ifndef RPLARGS
                   1162: typedef struct connecteur_sql
                   1163: {
                   1164:    pid_t                       pid;
                   1165:    pthread_t                   tid;
                   1166: 
                   1167:    /*
                   1168:     * "MYSQL"
                   1169:     * "POSTGRESQL"
                   1170:     */
                   1171: 
                   1172:    unsigned char               *type;
                   1173:    unsigned char               *locale;
                   1174: 
                   1175:    union
                   1176:    {
                   1177: #      ifdef MYSQL_SUPPORT
                   1178:            MYSQL               *mysql;
                   1179: #      endif
                   1180: #      ifdef POSTGRESQL_SUPPORT
                   1181:            PGconn              *postgresql;
                   1182: #      endif
                   1183:    } descripteur;
                   1184: } struct_connecteur_sql;
                   1185: #endif
                   1186: 
                   1187: #define sqlclose(s_objet) \
                   1188:    if (strcmp((*((struct_connecteur_sql *) (*s_objet).objet)).type, "MYSQL") \
                   1189:            == 0) \
                   1190:        mysqlclose((*((struct_connecteur_sql *) (*s_objet).objet)) \
                   1191:                .descripteur); \
                   1192:    else if (strcmp((*((struct_connecteur_sql *) (*s_objet).objet)).type, \
                   1193:            "POSTGRESQL") == 0) \
                   1194:        postgresqlclose((*((struct_connecteur_sql *) (*s_objet).objet)) \
                   1195:                .descripteur); \
                   1196:    else \
                   1197:        BUG(1, uprintf("SQL type '%s' not allowed!", \
                   1198:                (*((struct_connecteur_sql *) (*s_objet).objet)).type));
                   1199: 
                   1200: /*
                   1201: --------------------------------------------------------------------------------
                   1202:   Structure socket
                   1203: --------------------------------------------------------------------------------
                   1204: */
                   1205: 
                   1206: #ifndef RPLARGS
                   1207: typedef struct socket
                   1208: {
                   1209:    int                         domaine;
                   1210:    int                         socket;
                   1211: 
                   1212:    pid_t                       pid;
                   1213:    pthread_t                   tid;
                   1214: 
                   1215:    unsigned char               *adresse;
                   1216:    unsigned char               *adresse_distante;
                   1217:    unsigned char               binaire;
                   1218:    unsigned char               socket_en_ecoute;
                   1219:    logical1                    socket_connectee;
                   1220:    unsigned char               effacement;
                   1221:    unsigned char               localisation;
                   1222:    unsigned char               protection;
                   1223:    unsigned char               type[19 + 1];
                   1224: 
                   1225:    struct_objet                *format;
                   1226: } struct_socket;
                   1227: #endif
                   1228: 
                   1229: /*
                   1230: --------------------------------------------------------------------------------
                   1231:   Structure liste chaînee
                   1232: --------------------------------------------------------------------------------
                   1233: */
                   1234: 
                   1235: typedef struct liste_chainee
                   1236: {
                   1237:    struct liste_chainee        *suivant;
                   1238: 
                   1239:    struct_objet                *donnee;
                   1240: } struct_liste_chainee; 
                   1241: 
                   1242: 
                   1243: /*
                   1244: --------------------------------------------------------------------------------
                   1245:   Structure liste profilage
                   1246: --------------------------------------------------------------------------------
                   1247: */
                   1248: 
                   1249: typedef struct liste_profilage
                   1250: {
                   1251:    struct liste_profilage      *suivant;
                   1252: 
                   1253:    unsigned char               *fonction;
                   1254: 
                   1255:    struct timeval              dernier_appel;
                   1256:    struct timeval              cumul;
                   1257: 
                   1258:    integer8                    nombre_appels;
                   1259: } struct_liste_profilage; 
                   1260: 
                   1261: typedef struct liste_profilage2
                   1262: {
                   1263:    struct liste_profilage2     *suivant;
                   1264: 
                   1265:    unsigned char               *fonction;
                   1266: } struct_liste_profilage2; 
                   1267: 
                   1268: /*
                   1269: --------------------------------------------------------------------------------
                   1270:   Structure contenant les fichiers graphiques (liste chaînée)
                   1271: --------------------------------------------------------------------------------
                   1272: */
                   1273: 
                   1274: #ifndef RPLARLS
                   1275: typedef struct fichier_graphique
                   1276: {
                   1277:    struct fichier_graphique    *suivant;
                   1278: 
                   1279:    logical1                    presence_axes;
                   1280: 
                   1281:    unsigned char               *nom;
                   1282:    unsigned char               type[21];
                   1283: 
                   1284:    unsigned char               *legende;
                   1285: 
                   1286:    int                         dimensions;
                   1287: 
                   1288:    integer8                    systeme_axes;
                   1289: } struct_fichier_graphique;
                   1290: #endif
                   1291: 
                   1292: /*
                   1293: --------------------------------------------------------------------------------
                   1294:   Structure nom
                   1295: --------------------------------------------------------------------------------
                   1296: */
                   1297: 
                   1298: typedef struct nom
                   1299: {
                   1300:    unsigned char               *nom;
                   1301:    logical1                    symbole;    /* d_vrai/d_faux */
                   1302:    // symbole == d_vrai signifie que le nom a été introduit dans un
                   1303:    // calcul sans les apostrophes.
                   1304: } struct_nom;
                   1305: 
                   1306: 
                   1307: /*
                   1308: --------------------------------------------------------------------------------
                   1309:   Structure processus fils
                   1310: --------------------------------------------------------------------------------
                   1311: */
                   1312: 
                   1313: #ifndef RPLARGS
                   1314: typedef struct descripteur_thread
                   1315: {
                   1316:    struct processus            *s_etat_processus;
                   1317:    struct processus            *s_nouvel_etat_processus;
                   1318: 
                   1319:    struct_objet                *argument;
                   1320: 
1.13      bertrand 1321:    pid_t                       pid;
                   1322:    volatile pthread_t          tid;
1.1       bertrand 1323: 
                   1324:    pthread_t                   thread_pere;
                   1325: 
                   1326:    pthread_mutex_t             mutex;
1.43      bertrand 1327: 
1.1       bertrand 1328:    volatile logical1           thread_actif;
                   1329: 
                   1330:    int                         pipe_erreurs[2];
                   1331:    int                         pipe_objets[2];
                   1332:    int                         pipe_injections[2];
                   1333:    int                         pipe_nombre_injections[2];
                   1334:    int                         pipe_interruptions[2];
                   1335:    int                         pipe_nombre_objets_attente[2];
                   1336:    int                         pipe_nombre_interruptions_attente[2];
                   1337:    int                         pipe_acquittement[2];
                   1338: 
                   1339:    volatile integer8           nombre_objets_dans_pipe;
                   1340:    volatile integer8           nombre_interruptions_dans_pipe;
                   1341: 
                   1342:    logical1                    processus_detache;
                   1343:    logical1                    destruction_objet;
                   1344: 
                   1345:    sigset_t                    oldset;
                   1346:    sigset_t                    set;
                   1347: 
                   1348:    volatile signed long        nombre_references;
                   1349: } struct_descripteur_thread;
                   1350: 
                   1351: typedef struct processus_fils
                   1352: {
                   1353:    struct_descripteur_thread       *thread;
                   1354: } struct_processus_fils;
                   1355: #endif
                   1356: 
                   1357: 
                   1358: /*
                   1359: --------------------------------------------------------------------------------
                   1360:   Structure liste pile systeme
                   1361: --------------------------------------------------------------------------------
                   1362: */
                   1363: 
                   1364: #ifndef RPLARGS
                   1365: typedef struct liste_pile_systeme
                   1366: {
                   1367:    struct liste_pile_systeme   *suivant;
                   1368: 
                   1369:    struct_liste_chainee        *pointeur_objet_retour;
                   1370: 
                   1371:    struct_objet                *indice_boucle;
                   1372:    struct_objet                *limite_indice_boucle;
                   1373:    struct_objet                *objet_de_test;
                   1374: 
                   1375:    logical1                    arret_si_exception;
                   1376:    logical1                    creation_variables_statiques;
                   1377:    logical1                    creation_variables_partagees;
                   1378:    logical1                    evaluation_expression;
                   1379: 
                   1380:    unsigned char               clause;
                   1381: 
                   1382:    /*
                   1383:    clause :
                   1384:    I : IF
                   1385:    R : IFERR
                   1386:    X : IFERR indiquant la présence d'une erreur.
                   1387:    T : THEN
                   1388:    E : ELSE
                   1389:    Z : traitement en cours de ELSE
                   1390:    D : DO
                   1391:    U : UNTIL
                   1392:    W : WHILE
                   1393:    M : WHILE avec une clause fausse.
                   1394:    S : SELECT
                   1395:    K : aucun cas CASE n'a encore été traité.
                   1396:    C : au moins un cas de SELECT...CASE a été traité.
                   1397:    Q : traitement en cours d'un cas CASE.
                   1398:    F : traitement du cas DEFAULT
                   1399:    */
                   1400: 
                   1401:    unsigned char               retour_definition;
                   1402:    unsigned char               *nom_variable;
                   1403:    unsigned char               origine_routine_evaluation;
                   1404:    unsigned char               type_cloture;
                   1405: 
                   1406:    /*
                   1407:    type clôture :
1.47      bertrand 1408:    C     SELECT  : END termine un test SELECT/DEFAULT/END.
                   1409:    D     DO      : END termine une boucle DO/UNTIL/END.
                   1410:    I     IF      : END termine un test IF/THEN (ELSE)/END.
                   1411:    J     IFERR   : END termine un test IFERR/THEN (ELSE)/END.
                   1412:    K     CASE    : END termine un test CASE/THEN/END
                   1413:    W     WHILE   : END termine une boucle WHILE/REPEAT/END.
                   1414: 
                   1415:    F     FOR     : NEXT ou STEP termine une boucle avec compteur.
                   1416:    S     START   : NEXT ou STEP termine une boucle sans compteur.
                   1417:    L     LOOP    : boucle utilisé dans le traitement de l'instruction RETURN.
1.1       bertrand 1418:            Elle correspond à une boucle FOR ou START mais sans son
                   1419:            initialisation.
                   1420:    */
                   1421: 
                   1422:    unsigned long               adresse_retour;
                   1423:    unsigned long               niveau_courant;
1.48      bertrand 1424:    struct_objet                *pointeur_adresse_retour;
1.1       bertrand 1425: } struct_liste_pile_systeme;
                   1426: #endif
                   1427: 
                   1428: 
                   1429: /*
                   1430: --------------------------------------------------------------------------------
                   1431:   Structure variable
                   1432: --------------------------------------------------------------------------------
                   1433: */
                   1434: 
                   1435: #ifndef RPLARGS
                   1436: typedef union position_variable
                   1437: {
                   1438:    unsigned long       adresse;
                   1439:    struct_objet        *pointeur;
                   1440: } union_position_variable;
                   1441: 
                   1442: typedef struct variable
                   1443: {
                   1444:    unsigned char           *nom;
                   1445:    unsigned char           origine;
                   1446: 
                   1447:    unsigned long           niveau;
                   1448: 
                   1449:    union_position_variable variable_statique;
                   1450:    union_position_variable variable_partagee;
                   1451: 
                   1452:    struct_objet            *objet;
                   1453: 
                   1454:    logical1                variable_verrouillee;
                   1455: } struct_variable;
                   1456: 
                   1457: #endif
                   1458: 
                   1459: /*
                   1460: --------------------------------------------------------------------------------
                   1461:   Structure variable partagée
                   1462: --------------------------------------------------------------------------------
                   1463: */
                   1464: 
                   1465: #ifndef RPLARGS
                   1466: 
                   1467: typedef struct variable_partage
                   1468: {
                   1469:    unsigned char               *nom;
                   1470:    unsigned char               origine;
                   1471: 
                   1472:    unsigned long               niveau;
                   1473: 
                   1474:    union_position_variable     variable_partagee;
                   1475: 
                   1476:    struct_objet                *objet;
                   1477: } struct_variable_partagee;
                   1478: 
                   1479: typedef struct table_variables_partagees
                   1480: {
                   1481:    pthread_mutex_t                     mutex;
                   1482: 
                   1483:    volatile struct_variable_partagee   *table;
                   1484: 
                   1485:    volatile unsigned long              nombre_variables;
                   1486:    volatile unsigned long              nombre_variables_allouees;
                   1487: 
                   1488:    unsigned long                       position_variable;
                   1489: } struct_table_variables_partagees;
                   1490: 
                   1491: #endif
                   1492: 
                   1493: 
                   1494: /*
                   1495: --------------------------------------------------------------------------------
                   1496:   Structure variable statique
                   1497: --------------------------------------------------------------------------------
                   1498: */
                   1499: 
                   1500: #ifndef RPLARGS
                   1501: typedef struct variable_statique
                   1502: {
                   1503:    unsigned char           *nom;
                   1504:    unsigned char           origine;
                   1505: 
                   1506:    // Position de création de la variable statique dans le programme ou dans
                   1507:    // l'expression. 'origine' vaut 'P' pour programme ou 'E' pour expression.
                   1508: 
                   1509:    unsigned long           niveau;
                   1510: 
                   1511:    union_position_variable variable_statique;
                   1512: 
                   1513:    struct_objet            *objet;
                   1514: } struct_variable_statique;
                   1515: #endif
                   1516: 
                   1517: 
                   1518: /*
                   1519: --------------------------------------------------------------------------------
                   1520:   Structure vecteur
                   1521: --------------------------------------------------------------------------------
                   1522: */
                   1523: 
                   1524: typedef struct vecteur
                   1525: {
                   1526:    unsigned long       taille;
                   1527: 
                   1528:    unsigned char       type; /* C (complex*16), R (real*8), I (integer*8) */
                   1529: 
                   1530:    void                *tableau;
                   1531: } struct_vecteur;
                   1532: 
                   1533: 
                   1534: /*
                   1535: --------------------------------------------------------------------------------
                   1536:   Structure matrice
                   1537: --------------------------------------------------------------------------------
                   1538: */
                   1539: 
                   1540: typedef struct matrice
                   1541: {
                   1542:    unsigned long       nombre_lignes;
                   1543:    unsigned long       nombre_colonnes;
                   1544: 
                   1545:    unsigned char       type; /* C (complex*16), R (real*8), I (integer*8) */
                   1546: 
                   1547:    void                **tableau;
                   1548: } struct_matrice;
                   1549: 
                   1550: 
                   1551: /*
                   1552: --------------------------------------------------------------------------------
                   1553:   Structure tableau
                   1554: --------------------------------------------------------------------------------
                   1555: */
                   1556: 
                   1557: typedef struct tableau
                   1558: {
                   1559:    unsigned long       nombre_elements;
                   1560: 
                   1561:    struct_objet        **elements;
                   1562: } struct_tableau;
                   1563: 
                   1564: 
                   1565: /*
                   1566: --------------------------------------------------------------------------------
                   1567:   Structure arbre
                   1568: --------------------------------------------------------------------------------
                   1569: */
                   1570: 
                   1571: typedef struct arbre
                   1572: {
                   1573:    struct_objet        *objet;
                   1574: 
                   1575:    unsigned long       nombre_feuilles;
                   1576:    struct arbre        **feuilles;
                   1577: } struct_arbre;
                   1578: 
                   1579: 
                   1580: /*
                   1581: --------------------------------------------------------------------------------
                   1582:   Structures de gestion des instructions externes
                   1583: --------------------------------------------------------------------------------
                   1584: */
                   1585: 
                   1586: typedef struct instruction_externe
                   1587: {
                   1588:    unsigned char       *nom;
                   1589:    unsigned char       *nom_bibliotheque;
                   1590:    void                *descripteur_bibliotheque;
                   1591: } struct_instruction_externe;
                   1592: 
                   1593: 
                   1594: /*
                   1595: --------------------------------------------------------------------------------
                   1596:   Structure argument (pour les fonctions dynamiques)
                   1597: --------------------------------------------------------------------------------
                   1598: */
                   1599: 
                   1600: typedef struct rpl_arguments
                   1601: {
                   1602: /* Piles operationnelles                               */
                   1603: 
                   1604:    struct_liste_chainee        *l_base_pile;
                   1605:    struct_liste_chainee        *l_base_pile_last;
                   1606: 
                   1607: /* Etat du calculateur                                 */
                   1608: 
                   1609:    t_8_bits                    drapeaux_etat[8];
                   1610: 
                   1611: /* Traitement des erreurs                              */
                   1612: 
                   1613:    unsigned char               *message_erreur;
                   1614:    unsigned char               type_erreur;            /* S = système
                   1615:                                                           E = exécution */
                   1616:    integer8                    erreur;
                   1617: 
                   1618: /* Traitement des messages d'aide                      */
                   1619: 
                   1620:    logical1                    aide;                   /* Affichage d'un
                   1621:                                                           message d'aide
                   1622:                                                           par la routine */
                   1623: 
                   1624: /* Nombre d'arguments                                  */
                   1625: 
                   1626:    unsigned char               affichage_arguments;
                   1627:    unsigned char               constante_symbolique;
                   1628:    unsigned char               instruction_valide;
                   1629:    unsigned char               test_instruction;
                   1630: 
                   1631:    integer8                    nombre_arguments;
                   1632:    // Nombre d'arguments de la fonction, positif ou nul.
                   1633: 
                   1634:    void                        *s_etat_processus;
                   1635: } struct_rpl_arguments;
                   1636: 
                   1637: 
                   1638: /*
                   1639: --------------------------------------------------------------------------------
                   1640:   Structure processus
                   1641: --------------------------------------------------------------------------------
                   1642: */
                   1643: 
                   1644: #ifndef RPLARGS
                   1645: typedef struct processus
                   1646: {
                   1647: /* Pointeurs sur le programme                          */
                   1648: 
                   1649:    unsigned char               *definitions_chainees;
                   1650:    struct_liste_chainee        *expression_courante;
                   1651: 
                   1652:    unsigned char               *instruction_courante;
                   1653:    struct_objet                *objet_courant;
                   1654:    unsigned char               evaluation_expression_compilee;     /*Y/N*/
                   1655: 
                   1656:    unsigned char               *nom_fichier_source;
                   1657:    unsigned char               *nom_fichier_historique;
                   1658: 
1.7       bertrand 1659:    unsigned char               autorisation_conversion_chaine;     /*Y/N*/
1.1       bertrand 1660:    unsigned char               autorisation_empilement_programme;  /*Y/N*/
                   1661:    unsigned char               autorisation_evaluation_nom;        /*Y/N*/
1.20      bertrand 1662:    unsigned char               autorisation_nom_implicite;         /*Y/N*/
1.5       bertrand 1663:    unsigned char               evaluation_forcee;                  /*Y/N*/
1.1       bertrand 1664:    unsigned char               instruction_valide;                 /*Y/N*/
                   1665:    unsigned char               instruction_intrinseque;            /*Y/I/N*/
                   1666:    unsigned char               test_instruction;                   /*Y/N*/
                   1667:    unsigned char               affichage_arguments;                /*Y/N*/
                   1668:    unsigned char               constante_symbolique;               /*Y/N*/
                   1669:    unsigned char               traitement_symbolique;              /*Y/N*/
                   1670:    unsigned char               mode_execution_programme;           /*Y/I/N*/
                   1671:    unsigned char               mode_interactif;                    /*Y/N*/
                   1672:    unsigned char               mode_evaluation_expression;         /*Y/N*/
                   1673:    unsigned char               traitement_cycle_exit;              /*N/E/C*/
                   1674: 
                   1675:    unsigned long               position_courante;
                   1676:    unsigned long               longueur_definitions_chainees;
                   1677: 
                   1678: /* Pointeurs sur les instructions                      */
                   1679: 
                   1680:    int                         *pointeurs_caracteres;
                   1681:    int                         nombre_caracteres;
                   1682:    struct instruction          *arbre_instructions;
                   1683: 
                   1684: /* Requetes                                                */
                   1685: 
                   1686:    unsigned char               requete_arret;                      /*Y/N*/
                   1687: 
                   1688: /* Piles operationnelles                               */
                   1689: 
                   1690:    struct_liste_chainee        *l_base_pile;
                   1691:    struct_liste_chainee        *l_base_pile_last;
                   1692: 
                   1693:    unsigned long               hauteur_pile_operationnelle;
                   1694: 
                   1695: /* Piles systemes                                      */
                   1696: 
                   1697:    struct_liste_pile_systeme   *l_base_pile_systeme;
                   1698: 
                   1699:    unsigned long               hauteur_pile_systeme;
                   1700: 
                   1701: /* Gestion des processus                                */
                   1702: 
                   1703:    volatile
                   1704:    struct_liste_chainee        *l_base_pile_processus;
                   1705: 
                   1706:    logical1                    presence_pipes;
                   1707: 
                   1708:    int                         pipe_acquittement;
                   1709:    int                         pipe_donnees;
                   1710:    int                         pipe_injections;
                   1711:    int                         pipe_nombre_injections;
                   1712:    int                         pipe_interruptions;
                   1713:    int                         pipe_nombre_objets_attente;
                   1714:    int                         pipe_nombre_interruptions_attente;
                   1715:    int                         nombre_objets_envoyes_non_lus;
                   1716:    int                         nombre_objets_injectes;
                   1717: 
                   1718:    real8                       pourcentage_maximal_cpu;
                   1719:    real8                       temps_maximal_cpu;
                   1720: 
                   1721:    logical1                    presence_fusible;
                   1722:    pthread_t                   thread_fusible;
                   1723:    pthread_t                   thread_surveille_par_fusible;
                   1724: 
1.51      bertrand 1725: #  if !defined(Cygwin)
1.56      bertrand 1726: #      if !(OpenBSD)
1.1       bertrand 1727:    stack_t                     pile_signal;
1.56      bertrand 1728: #      else
                   1729: #          ifdef SA_ONSTACK
                   1730: #              undef SA_ONSTACK
                   1731: #          endif
                   1732: #          define SA_ONSTACK   0
                   1733: #      endif
1.11      bertrand 1734: #  else
                   1735: #  define SA_ONSTACK           0
                   1736: #  define RTLD_LOCAL           0
                   1737: #  endif
1.1       bertrand 1738: 
                   1739: /* Contextes                                           */
                   1740: 
                   1741:    struct_liste_chainee        *l_base_pile_contextes;
                   1742:    struct_liste_chainee        *l_base_pile_taille_contextes;
                   1743: 
                   1744: /* Variables                                           */
                   1745: 
                   1746:    struct_variable             *s_liste_variables;
                   1747:    unsigned long               nombre_variables;
                   1748:    unsigned long               nombre_variables_allouees;
                   1749: 
                   1750:    struct_variable_statique    *s_liste_variables_statiques;
                   1751:    unsigned long               nombre_variables_statiques;
                   1752:    unsigned long               nombre_variables_statiques_allouees;
                   1753: 
                   1754:    struct_table_variables_partagees
                   1755:                                *s_liste_variables_partagees;
                   1756: 
                   1757:    unsigned long               niveau_courant;
                   1758:    unsigned long               niveau_initial;
                   1759:    unsigned long               position_variable_courante;
                   1760:    unsigned long               position_variable_statique_courante;
                   1761: 
                   1762:    logical1                    creation_variables_statiques;
                   1763:    logical1                    creation_variables_partagees;
                   1764:    logical1                    gel_liste_variables;
                   1765: 
                   1766: /* Fichiers                                                */
                   1767: 
                   1768:    struct_liste_chainee        *s_fichiers;
                   1769: 
                   1770: /* Sockets                                             */
                   1771: 
                   1772:    struct_liste_chainee        *s_sockets;
                   1773: 
                   1774: /* Connecteurs aux bases de données                    */
                   1775: 
                   1776:    struct_liste_chainee        *s_connecteurs_sql;
                   1777: 
                   1778: /* Bibliothèques dynamiques                                */
                   1779: 
                   1780:    struct_liste_chainee        *s_bibliotheques;
                   1781:    struct_instruction_externe  *s_instructions_externes;
                   1782:    unsigned long               nombre_instructions_externes;
                   1783: 
                   1784: /* Fichier d'impression                                    */
                   1785: 
                   1786:    unsigned char               *nom_fichier_impression;
                   1787:    unsigned char               format_papier[16];
                   1788: 
                   1789: /* Parametres graphiques                               */
                   1790: 
                   1791:    struct_fichier_graphique    *fichiers_graphiques;    /* NULL */
                   1792: 
                   1793:    unsigned char               type_trace_eq[21];
                   1794: 
                   1795:                                /*
                   1796:                                 * 2D :
                   1797:                                 * FONCTION
                   1798:                                 * PARAMETRIQUE
                   1799:                                 * POLAIRE
                   1800:                                 * COURBES DE NIVEAU
                   1801:                                 *
                   1802:                                 * 3D :
                   1803:                                 * GRILLE 3D
                   1804:                                 * COURBE PARAMETRIQUE // A FAIRE
                   1805:                                 * SURFACE PARAMETRIQUE // A FAIRE
                   1806:                                 * CYNLINDRIQUE // A FAIRE
                   1807:                                 * SPHERIQUE // A FAIRE
                   1808:                                 */
                   1809: 
                   1810:    unsigned char               type_trace_sigma[21];
                   1811: 
                   1812:                                /*
                   1813:                                 * POINTS
                   1814:                                 * HISTOGRAMME
                   1815:                                 * TABLE TRACANTE
                   1816:                                 */
                   1817: 
                   1818:                                /*
                   1819:                                 * ECHELLES
                   1820:                                 */
                   1821: 
                   1822:    integer8                    systeme_axes;
                   1823: 
                   1824:    real8                       x_min;
                   1825:    real8                       x_max;
                   1826:    real8                       y_min;
                   1827:    real8                       y_max;
                   1828:    real8                       z_min;
                   1829:    real8                       z_max;
                   1830: 
                   1831:    real8                       x_tics;
                   1832:    real8                       y_tics;
                   1833:    real8                       z_tics;
                   1834:    
                   1835:    integer8                    mx_tics;
                   1836:    integer8                    my_tics;
                   1837:    integer8                    mz_tics;
                   1838: 
                   1839:    logical1                    x_lines;
                   1840:    logical1                    y_lines;
                   1841:    logical1                    z_lines;
                   1842: 
                   1843:    logical1                    mx_lines;
                   1844:    logical1                    my_lines;
                   1845:    logical1                    mz_lines;
                   1846: 
                   1847:                                /*
                   1848:                                 * -1 : absent du graphique
                   1849:                                 *  0 : graduations automatiques
                   1850:                                 * >0 : valeur manuelle
                   1851:                                 */
                   1852: 
                   1853:    real8                       x2_min;
                   1854:    real8                       x2_max;
                   1855:    real8                       y2_min;
                   1856:    real8                       y2_max;
                   1857:    real8                       z2_min;
                   1858:    real8                       z2_max;
                   1859: 
                   1860:    real8                       x2_tics;
                   1861:    real8                       y2_tics;
                   1862:    real8                       z2_tics;
                   1863: 
                   1864:    integer8                    mx2_tics;
                   1865:    integer8                    my2_tics;
                   1866:    integer8                    mz2_tics;
                   1867: 
                   1868:    logical1                    x2_lines;
                   1869:    logical1                    y2_lines;
                   1870:    logical1                    z2_lines;
                   1871: 
                   1872:    logical1                    mx2_lines;
                   1873:    logical1                    my2_lines;
                   1874:    logical1                    mz2_lines;
                   1875: 
                   1876:    real8                       resolution;
                   1877: 
                   1878:    logical1                    souris_active;
                   1879: 
                   1880:    logical1                    echelle_automatique_x;
                   1881:    logical1                    echelle_automatique_y;
                   1882:    logical1                    echelle_automatique_z;
                   1883: 
                   1884:    logical1                    echelle_automatique_x2;
                   1885:    logical1                    echelle_automatique_y2;
                   1886:    logical1                    echelle_automatique_z2;
                   1887: 
                   1888:    logical1                    echelle_log_x;
                   1889:    logical1                    echelle_log_y;
                   1890:    logical1                    echelle_log_z;
                   1891: 
                   1892:    logical1                    echelle_log_x2;
                   1893:    logical1                    echelle_log_y2;
                   1894:    logical1                    echelle_log_z2;
                   1895: 
                   1896:    real8                       point_de_vue_theta;
                   1897:    real8                       point_de_vue_phi;
                   1898:    real8                       echelle_3D;
                   1899: 
                   1900:    unsigned char               *label_x;
                   1901:    unsigned char               *label_y;
                   1902:    unsigned char               *label_z;
                   1903:    unsigned char               *titre;
                   1904:    unsigned char               *legende;
                   1905: 
                   1906:    unsigned char               *nom_fichier_gnuplot;
                   1907:    unsigned char               *type_fichier_gnuplot;
                   1908: 
                   1909:    struct_objet                *indep;
                   1910:    struct_objet                *depend;
                   1911:    struct_objet                *parametres_courbes_de_niveau;
                   1912: 
                   1913:    struct_marque               *s_marques;
                   1914: 
                   1915:    file                        *entree_standard;
                   1916: 
                   1917:    logical1                    requete_nouveau_plan;
                   1918:    logical1                    mise_a_jour_trace_requise;
                   1919: 
                   1920: /* Parametres statistiques                             */
                   1921: 
                   1922:    integer8                    colonne_statistique_1;
                   1923:    integer8                    colonne_statistique_2;
                   1924: 
                   1925: /* Etat du calculateur                                 */
                   1926: 
                   1927:    t_8_bits                    drapeaux_etat[8];
                   1928: 
                   1929: /* Traitement des exceptions                           */
                   1930: 
                   1931:    logical1                    arret_si_exception;
                   1932:    unsigned int                exception;
                   1933:    unsigned int                derniere_exception;
                   1934:    unsigned int                exception_processus_fils;
                   1935: 
                   1936: /* Traitement des erreurs                              */
                   1937: 
                   1938:    unsigned int                erreur_compilation;
                   1939:    unsigned int                erreur_execution;
                   1940:    unsigned int                erreur_systeme;
                   1941: 
                   1942:    struct_objet                *s_objet_errone;
                   1943:    struct_objet                *s_objet_erreur;
                   1944: 
                   1945:    logical1                    erreur_scrutation;
                   1946: 
                   1947:    volatile unsigned int       erreur_systeme_processus_fils;
                   1948:    unsigned int                erreur_execution_processus_fils;
                   1949: 
                   1950:    pid_t                       pid_erreur_processus_fils;
                   1951: 
                   1952:    logical1                    erreur_processus_fils;
                   1953: 
                   1954:    integer8                    derniere_erreur_fonction_externe;
                   1955: 
                   1956:    unsigned int                derniere_erreur_systeme;
                   1957:    unsigned int                derniere_erreur_execution;
                   1958:    unsigned int                derniere_erreur_evaluation;
                   1959: 
                   1960:    unsigned char               *instruction_derniere_erreur;
                   1961: 
                   1962:    unsigned long               niveau_derniere_erreur;
                   1963: 
                   1964:    logical1                    core;
                   1965:    logical1                    invalidation_message_erreur;
                   1966: 
                   1967: /* Debug                                               */
                   1968: 
                   1969:    logical1                    debug;
                   1970:    integer8                    type_debug;
                   1971:    logical1                    debug_programme;
                   1972:    logical1                    execution_pas_suivant;
                   1973:    logical1                    traitement_instruction_halt;
                   1974: 
                   1975: /* Interruptions logicielles                           */
                   1976: 
                   1977:    unsigned char               masque_interruptions[d_NOMBRE_INTERRUPTIONS];
                   1978: 
                   1979:    /*
                   1980:     * 'I' : interruption ignorée
                   1981:     * 'Q' : interruption mise en queue pour un traitement ultérieur
                   1982:     * 'N' : traitement normal de l'interruption
                   1983:     */
                   1984: 
                   1985:    integer8                    queue_interruptions[d_NOMBRE_INTERRUPTIONS];
                   1986:    integer8                    nombre_interruptions_en_queue;
                   1987:    struct_liste_chainee        *pile_origine_interruptions
                   1988:                                        [d_NOMBRE_INTERRUPTIONS];
                   1989:    volatile integer8           nombre_interruptions_non_affectees;
                   1990: 
                   1991:    struct_objet                *corps_interruptions[d_NOMBRE_INTERRUPTIONS];
                   1992: 
                   1993:    unsigned char               traitement_interruption;  /* Y/N */
                   1994:    unsigned char               traitement_interruptible; /* Y/N */
1.50      bertrand 1995:    unsigned char               traitement_at_poke;       /* Y/N */
1.1       bertrand 1996: 
1.26      bertrand 1997:    struct_objet                *at_exit;
1.50      bertrand 1998:    struct_objet                *at_poke;
1.25      bertrand 1999: 
1.1       bertrand 2000: /* Variables volatiles                                 */
                   2001: 
                   2002:    volatile sig_atomic_t       var_volatile_alarme;
                   2003:    // Traitement de ctrl+C et des arrêts brutaux
                   2004:    volatile sig_atomic_t       var_volatile_requete_arret;
                   2005:    // Traitement de ctrl+Z
                   2006:    volatile sig_atomic_t       var_volatile_requete_arret2;
                   2007:    volatile sig_atomic_t       var_volatile_traitement_retarde_stop;
                   2008:    volatile sig_atomic_t       var_volatile_traitement_sigint;
                   2009: 
                   2010:    volatile sig_atomic_t       var_volatile_processus_pere;
                   2011:    volatile sig_atomic_t       var_volatile_recursivite;
                   2012: 
1.27      bertrand 2013:    volatile sig_atomic_t       arret_depuis_abort;
                   2014: 
1.1       bertrand 2015:    volatile int                var_volatile_exception_gsl;
                   2016: 
                   2017: /* Autres                                              */
                   2018: 
1.13      bertrand 2019:    char                        *rpl_home;
                   2020: 
1.1       bertrand 2021:    gsl_rng                     *generateur_aleatoire;
                   2022:    const gsl_rng_type          *type_generateur_aleatoire;
                   2023: 
                   2024:    integer8                    nombre_arguments;
                   2025: 
                   2026:    /*
                   2027:     * Il s'agit du nombre d'arguments utilisé pour l'évaluation
                   2028:     * des expressions algébriques.
                   2029:     * -1 : la fonction ne peut être dans un objet de type ALG.
                   2030:     * -2 : nombre d'arguments inconnu
                   2031:     *  0 : la fonction doit apparaître en notation infixe
                   2032:     * >0 : la fonction apparaît comme une fonction normale
                   2033:     */
                   2034: 
                   2035:    logical1                    lancement_interactif;
                   2036: 
                   2037:    unsigned char               *chemin_fichiers_temporaires;
                   2038:    unsigned char               langue;
                   2039:    unsigned char               retour_routine_evaluation;
                   2040:    unsigned char               *localisation;
                   2041: 
                   2042:    unsigned long               niveau_recursivite;
                   2043: 
                   2044:    pid_t                       pid_processus_pere;
                   2045:    pthread_t                   tid_processus_pere;
                   2046: 
                   2047:    logical1                    processus_detache;
                   2048: 
                   2049: /* Profilage                                           */
                   2050: 
                   2051:    logical1                    profilage;
                   2052:    int                         niveau_profilage;
                   2053:    struct_liste_profilage      *pile_profilage;
                   2054:    struct_liste_profilage2     *pile_profilage_fonctions;
                   2055:    struct timeval              horodatage_profilage;
                   2056: 
                   2057:    // Mutex spécifique au processus et donnant accès à la pile des processus
                   2058:    pthread_mutex_t             mutex;
1.43      bertrand 2059:    pthread_mutex_t             mutex_allocation;
1.1       bertrand 2060: 
                   2061:    // Sémaphore autorisant les fork()
1.22      bertrand 2062:    sem_t
                   2063: #  ifdef SEMAPHORES_NOMMES
                   2064:    *
                   2065: #  endif
                   2066:                                semaphore_fork;
1.1       bertrand 2067: 
                   2068: /* Mutexes                                         */
                   2069: 
                   2070:    struct_liste_chainee        *liste_mutexes;
                   2071:    pthread_mutex_t             protection_liste_mutexes;
                   2072: 
                   2073: /* Gestion optimisée de la mémoire                 */
                   2074: 
                   2075:    double                      estimation_taille_pile_tampon;
                   2076:    unsigned long               taille_pile_tampon;
                   2077:    struct_liste_chainee        *pile_tampon;
                   2078: 
                   2079:    double                      estimation_taille_pile_systeme_tampon;
                   2080:    unsigned long               taille_pile_systeme_tampon;
                   2081:    struct_liste_pile_systeme   *pile_systeme_tampon;
                   2082: 
                   2083:    unsigned long               taille_pile_objets;
                   2084:    struct_objet                *pile_objets;
                   2085: 
1.36      bertrand 2086: #  ifndef DEBUG_MALLOC
                   2087: #      define TAILLE_CACHE 16384
                   2088: #  else
                   2089: #      define TAILLE_CACHE 4
                   2090: #  endif
1.1       bertrand 2091: 
                   2092:    unsigned long               *objets_adr[TAILLE_CACHE];
                   2093:    int                         pointeur_adr;
                   2094: 
                   2095:    logical8                    *objets_bin[TAILLE_CACHE];
                   2096:    int                         pointeur_bin;
                   2097: 
                   2098:    complex16                   *objets_cpl[TAILLE_CACHE];
                   2099:    int                         pointeur_cpl;
                   2100: 
                   2101:    struct fonction             *objets_fct[TAILLE_CACHE];
                   2102:    int                         pointeur_fct;
                   2103: 
                   2104:    integer8                    *objets_int[TAILLE_CACHE];
                   2105:    int                         pointeur_int;
                   2106: 
                   2107:    struct_matrice              *objets_mat[TAILLE_CACHE];
                   2108:    int                         pointeur_mat;
                   2109: 
                   2110:    struct_nom                  *objets_nom[TAILLE_CACHE];
                   2111:    int                         pointeur_nom;
                   2112: 
                   2113:    real8                       *objets_rel[TAILLE_CACHE];
                   2114:    int                         pointeur_rel;
                   2115: 
                   2116:    struct_tableau              *objets_tab[TAILLE_CACHE];
                   2117:    int                         pointeur_tab;
                   2118: 
                   2119:    struct_vecteur              *objets_vec[TAILLE_CACHE];
                   2120:    int                         pointeur_vec;
                   2121: 
                   2122:    struct_liste_chainee        *maillons[TAILLE_CACHE];
                   2123:    int                         pointeur_maillons;
                   2124: } struct_processus;
                   2125: #endif
                   2126: 
                   2127: /*
                   2128: --------------------------------------------------------------------------------
1.36      bertrand 2129:   Structures instruction intrinsèque
1.1       bertrand 2130: --------------------------------------------------------------------------------
                   2131: */
                   2132: 
                   2133: #ifndef RPLARGS
                   2134: typedef struct instruction
                   2135: {
                   2136:    struct instruction      **noeud;
                   2137:    void                    (*feuille)(struct_processus *);
                   2138: } struct_instruction;
                   2139: #endif
                   2140: 
                   2141: 
                   2142: /*
                   2143: --------------------------------------------------------------------------------
                   2144:   Structure fonction
                   2145: --------------------------------------------------------------------------------
                   2146: */
                   2147: 
                   2148: #ifndef RPLARGS
                   2149: typedef struct fonction
                   2150: {
                   2151:    unsigned char                       *nom_fonction;
                   2152:    unsigned long                       nombre_arguments;
                   2153: 
                   2154:    void                                (*fonction)(struct_processus *);
                   2155: 
                   2156:    volatile struct_liste_chainee       *prediction_saut;
                   2157:    volatile logical1                   prediction_execution;
                   2158: } struct_fonction;
                   2159: #endif
                   2160: 
                   2161: 
                   2162: /*
                   2163: ================================================================================
                   2164:   PROTOTYPES
                   2165: ================================================================================
                   2166: */
                   2167: 
                   2168: /*
                   2169: --------------------------------------------------------------------------------
                   2170:   Procédures d'exécution des mots-clef du langage RPL/2
                   2171: --------------------------------------------------------------------------------
                   2172: */
                   2173: 
                   2174: // BEGIN C PROTOTYPES
                   2175: void instruction_sensible_e(struct_processus *s_etat_processus);
                   2176: void instruction_sensible_i(struct_processus *s_etat_processus);
                   2177: 
                   2178: void instruction_abort(struct_processus *s_etat_processus);
                   2179: void instruction_abs(struct_processus *s_etat_processus);
                   2180: void instruction_acos(struct_processus *s_etat_processus);
                   2181: void instruction_acosh(struct_processus *s_etat_processus);
                   2182: void instruction_alarm(struct_processus *s_etat_processus);
                   2183: void instruction_alog(struct_processus *s_etat_processus);
                   2184: void instruction_and(struct_processus *s_etat_processus);
                   2185: void instruction_append(struct_processus *s_etat_processus);
                   2186: void instruction_array_fleche(struct_processus *s_etat_processus);
                   2187: void instruction_arg(struct_processus *s_etat_processus);
                   2188: void instruction_asin(struct_processus *s_etat_processus);
                   2189: void instruction_asinh(struct_processus *s_etat_processus);
                   2190: void instruction_asl(struct_processus *s_etat_processus);
                   2191: void instruction_asr(struct_processus *s_etat_processus);
                   2192: void instruction_atan(struct_processus *s_etat_processus);
                   2193: void instruction_atanh(struct_processus *s_etat_processus);
1.26      bertrand 2194: void instruction_atexit(struct_processus *s_etat_processus);
1.50      bertrand 2195: void instruction_atpoke(struct_processus *s_etat_processus);
1.1       bertrand 2196: void instruction_autoscale(struct_processus *s_etat_processus);
                   2197: void instruction_axes(struct_processus *s_etat_processus);
                   2198: 
                   2199: void instruction_b_vers_r(struct_processus *s_etat_processus);
                   2200: void instruction_backspace(struct_processus *s_etat_processus);
1.48      bertrand 2201: void instruction_backtrace(struct_processus *s_etat_processus);
1.1       bertrand 2202: void instruction_beep(struct_processus *s_etat_processus);
                   2203: void instruction_bessel(struct_processus *s_etat_processus);
                   2204: void instruction_bin(struct_processus *s_etat_processus);
                   2205: 
                   2206: void instruction_c_vers_r(struct_processus *s_etat_processus);
                   2207: void instruction_case(struct_processus *s_etat_processus);
                   2208: void instruction_ceil(struct_processus *s_etat_processus);
                   2209: void instruction_centr(struct_processus *s_etat_processus);
                   2210: void instruction_cf(struct_processus *s_etat_processus);
                   2211: void instruction_chr(struct_processus *s_etat_processus);
                   2212: void instruction_clear(struct_processus *s_etat_processus);
                   2213: void instruction_cllcd(struct_processus *s_etat_processus);
                   2214: void instruction_clmf(struct_processus *s_etat_processus);
                   2215: void instruction_close(struct_processus *s_etat_processus);
1.28      bertrand 2216: void instruction_clratexit(struct_processus *s_etat_processus);
1.50      bertrand 2217: void instruction_clratpoke(struct_processus *s_etat_processus);
1.1       bertrand 2218: void instruction_clrcntxt(struct_processus *s_etat_processus);
                   2219: void instruction_clrerr(struct_processus *s_etat_processus);
                   2220: void instruction_clrfuse(struct_processus *s_etat_processus);
                   2221: void instruction_clrmtx(struct_processus *s_etat_processus);
                   2222: void instruction_clrsmphr(struct_processus *s_etat_processus);
                   2223: void instruction_clrswi(struct_processus *s_etat_processus);
                   2224: void instruction_cls(struct_processus *s_etat_processus);
                   2225: void instruction_clusr(struct_processus *s_etat_processus);
                   2226: void instruction_cnrm(struct_processus *s_etat_processus);
                   2227: void instruction_cols(struct_processus *s_etat_processus);
                   2228: void instruction_col_fleche(struct_processus *s_etat_processus);
                   2229: void instruction_col_moins(struct_processus *s_etat_processus);
                   2230: void instruction_col_plus(struct_processus *s_etat_processus);
                   2231: void instruction_comb(struct_processus *s_etat_processus);
                   2232: void instruction_con(struct_processus *s_etat_processus);
                   2233: void instruction_cond(struct_processus *s_etat_processus);
                   2234: void instruction_cont(struct_processus *s_etat_processus);
                   2235: void instruction_continue(struct_processus *s_etat_processus);
                   2236: void instruction_conj(struct_processus *s_etat_processus);
                   2237: void instruction_convert(struct_processus *s_etat_processus);
                   2238: void instruction_copy(struct_processus *s_etat_processus);
                   2239: void instruction_copyright(struct_processus *s_etat_processus);
                   2240: void instruction_corr(struct_processus *s_etat_processus);
                   2241: void instruction_cos(struct_processus *s_etat_processus);
                   2242: void instruction_cosh(struct_processus *s_etat_processus);
                   2243: void instruction_cov(struct_processus *s_etat_processus);
                   2244: void instruction_cr(struct_processus *s_etat_processus);
                   2245: void instruction_create(struct_processus *s_etat_processus);
                   2246: void instruction_crmtx(struct_processus *s_etat_processus);
                   2247: void instruction_cross(struct_processus *s_etat_processus);
                   2248: void instruction_crsmphr(struct_processus *s_etat_processus);
                   2249: void instruction_crtab(struct_processus *s_etat_processus);
                   2250: void instruction_cstop(struct_processus *s_etat_processus);
                   2251: void instruction_cswp(struct_processus *s_etat_processus);
                   2252: void instruction_currenc(struct_processus *s_etat_processus);
                   2253: void instruction_cycle(struct_processus *s_etat_processus);
                   2254: 
                   2255: void instruction_d_vers_r(struct_processus *s_etat_processus);
                   2256: void instruction_daemonize(struct_processus *s_etat_processus);
                   2257: void instruction_date(struct_processus *s_etat_processus);
                   2258: void instruction_dec(struct_processus *s_etat_processus);
                   2259: void instruction_decr(struct_processus *s_etat_processus);
                   2260: void instruction_default(struct_processus *s_etat_processus);
                   2261: void instruction_deg(struct_processus *s_etat_processus);
                   2262: void instruction_delete(struct_processus *s_etat_processus);
                   2263: void instruction_depnd(struct_processus *s_etat_processus);
                   2264: void instruction_depth(struct_processus *s_etat_processus);
                   2265: void instruction_der(struct_processus *s_etat_processus);
                   2266: void instruction_det(struct_processus *s_etat_processus);
                   2267: void instruction_detach(struct_processus *s_etat_processus);
                   2268: void instruction_dft(struct_processus *s_etat_processus);
                   2269: void instruction_dgtiz(struct_processus *s_etat_processus);
                   2270: void instruction_diag_fleche(struct_processus *s_etat_processus);
                   2271: void instruction_disp(struct_processus *s_etat_processus);
                   2272: void instruction_division(struct_processus *s_etat_processus);
                   2273: void instruction_do(struct_processus *s_etat_processus);
                   2274: void instruction_dot(struct_processus *s_etat_processus);
                   2275: void instruction_draw(struct_processus *s_etat_processus);
                   2276: void instruction_drax(struct_processus *s_etat_processus);
                   2277: void instruction_drop(struct_processus *s_etat_processus);
                   2278: void instruction_drop2(struct_processus *s_etat_processus);
                   2279: void instruction_dropcntxt(struct_processus *s_etat_processus);
                   2280: void instruction_dropn(struct_processus *s_etat_processus);
                   2281: void instruction_drws(struct_processus *s_etat_processus);
                   2282: void instruction_dup(struct_processus *s_etat_processus);
                   2283: void instruction_dup2(struct_processus *s_etat_processus);
                   2284: void instruction_dupcntxt(struct_processus *s_etat_processus);
                   2285: void instruction_dupn(struct_processus *s_etat_processus);
                   2286: 
                   2287: void instruction_e(struct_processus *s_etat_processus);
                   2288: void instruction_edit(struct_processus *s_etat_processus);
                   2289: void instruction_egalite(struct_processus *s_etat_processus);
                   2290: void instruction_egv(struct_processus *s_etat_processus);
                   2291: void instruction_egvl(struct_processus *s_etat_processus);
                   2292: void instruction_else(struct_processus *s_etat_processus);
                   2293: void instruction_elseif(struct_processus *s_etat_processus);
                   2294: void instruction_end(struct_processus *s_etat_processus);
                   2295: void instruction_eng(struct_processus *s_etat_processus);
                   2296: void instruction_epsilon(struct_processus *s_etat_processus);
                   2297: void instruction_erase(struct_processus *s_etat_processus);
                   2298: void instruction_errm(struct_processus *s_etat_processus);
                   2299: void instruction_errn(struct_processus *s_etat_processus);
                   2300: void instruction_eval(struct_processus *s_etat_processus);
                   2301: void instruction_exget(struct_processus *s_etat_processus);
                   2302: void instruction_exit(struct_processus *s_etat_processus);
                   2303: void instruction_exp(struct_processus *s_etat_processus);
                   2304: void instruction_expm(struct_processus *s_etat_processus);
                   2305: void instruction_exsub(struct_processus *s_etat_processus);
                   2306: void instruction_externals(struct_processus *s_etat_processus);
                   2307: void instruction_eyept(struct_processus *s_etat_processus);
                   2308: 
                   2309: void instruction_fact(struct_processus *s_etat_processus);
                   2310: void instruction_false(struct_processus *s_etat_processus);
                   2311: void instruction_fc_test(struct_processus *s_etat_processus);
                   2312: void instruction_fc_test_c(struct_processus *s_etat_processus);
                   2313: void instruction_fc_test_s(struct_processus *s_etat_processus);
                   2314: void instruction_fft(struct_processus *s_etat_processus);
                   2315: void instruction_fix(struct_processus *s_etat_processus);
                   2316: void instruction_fleche(struct_processus *s_etat_processus);
                   2317: void instruction_fleche_array(struct_processus *s_etat_processus);
                   2318: void instruction_fleche_col(struct_processus *s_etat_processus);
                   2319: void instruction_fleche_diag(struct_processus *s_etat_processus);
                   2320: void instruction_fleche_hms(struct_processus *s_etat_processus);
                   2321: void instruction_fleche_lcd(struct_processus *s_etat_processus);
                   2322: void instruction_fleche_list(struct_processus *s_etat_processus);
                   2323: void instruction_fleche_num(struct_processus *s_etat_processus);
                   2324: void instruction_fleche_q(struct_processus *s_etat_processus);
                   2325: void instruction_fleche_row(struct_processus *s_etat_processus);
                   2326: void instruction_fleche_str(struct_processus *s_etat_processus);
                   2327: void instruction_fleche_table(struct_processus *s_etat_processus);
                   2328: void instruction_floor(struct_processus *s_etat_processus);
                   2329: void instruction_for(struct_processus *s_etat_processus);
                   2330: void instruction_format(struct_processus *s_etat_processus);
                   2331: void instruction_fp(struct_processus *s_etat_processus);
                   2332: void instruction_fs_test(struct_processus *s_etat_processus);
                   2333: void instruction_fs_test_c(struct_processus *s_etat_processus);
                   2334: void instruction_fs_test_s(struct_processus *s_etat_processus);
                   2335: void instruction_function(struct_processus *s_etat_processus);
                   2336: void instruction_fuse(struct_processus *s_etat_processus);
                   2337: 
                   2338: void instruction_gamma(struct_processus *s_etat_processus);
                   2339: void instruction_ge(struct_processus *s_etat_processus);
                   2340: void instruction_gegv(struct_processus *s_etat_processus);
                   2341: void instruction_gegvl(struct_processus *s_etat_processus);
                   2342: void instruction_get(struct_processus *s_etat_processus);
                   2343: void instruction_getc(struct_processus *s_etat_processus);
                   2344: void instruction_geti(struct_processus *s_etat_processus);
                   2345: void instruction_getr(struct_processus *s_etat_processus);
                   2346: void instruction_glegv(struct_processus *s_etat_processus);
                   2347: void instruction_gregv(struct_processus *s_etat_processus);
                   2348: void instruction_gt(struct_processus *s_etat_processus);
                   2349: 
                   2350: void instruction_halt(struct_processus *s_etat_processus);
                   2351: void instruction_head(struct_processus *s_etat_processus);
                   2352: void instruction_help(struct_processus *s_etat_processus);
                   2353: void instruction_hex(struct_processus *s_etat_processus);
                   2354: void instruction_histogram(struct_processus *s_etat_processus);
                   2355: void instruction_hms_fleche(struct_processus *s_etat_processus);
                   2356: void instruction_hms_moins(struct_processus *s_etat_processus);
                   2357: void instruction_hms_plus(struct_processus *s_etat_processus);
                   2358: 
                   2359: void instruction_i(struct_processus *s_etat_processus);
                   2360: void instruction_idft(struct_processus *s_etat_processus);
                   2361: void instruction_idn(struct_processus *s_etat_processus);
                   2362: void instruction_if(struct_processus *s_etat_processus);
                   2363: void instruction_iferr(struct_processus *s_etat_processus);
                   2364: void instruction_ifft(struct_processus *s_etat_processus);
                   2365: void instruction_ift(struct_processus *s_etat_processus);
                   2366: void instruction_ifte(struct_processus *s_etat_processus);
                   2367: void instruction_im(struct_processus *s_etat_processus);
1.20      bertrand 2368: void instruction_implicit(struct_processus *s_etat_processus);
1.1       bertrand 2369: void instruction_in(struct_processus *s_etat_processus);
                   2370: void instruction_incr(struct_processus *s_etat_processus);
                   2371: void instruction_indep(struct_processus *s_etat_processus);
                   2372: void instruction_input(struct_processus *s_etat_processus);
                   2373: void instruction_inquire(struct_processus *s_etat_processus);
                   2374: void instruction_int(struct_processus *s_etat_processus);
                   2375: void instruction_interrupt(struct_processus *s_etat_processus);
                   2376: void instruction_inv(struct_processus *s_etat_processus);
                   2377: void instruction_ip(struct_processus *s_etat_processus);
                   2378: void instruction_iswi(struct_processus *s_etat_processus);
                   2379: void instruction_itrace(struct_processus *s_etat_processus);
                   2380: 
                   2381: void instruction_jdate(struct_processus *s_etat_processus);
                   2382: 
                   2383: void instruction_key(struct_processus *s_etat_processus);
                   2384: void instruction_keylabel(struct_processus *s_etat_processus);
                   2385: void instruction_keytitle(struct_processus *s_etat_processus);
                   2386: void instruction_kill(struct_processus *s_etat_processus);
                   2387: void instruction_kind(struct_processus *s_etat_processus);
                   2388: 
                   2389: void instruction_label(struct_processus *s_etat_processus);
                   2390: void instruction_last(struct_processus *s_etat_processus);
                   2391: void instruction_lcase(struct_processus *s_etat_processus);
                   2392: void instruction_lcd_fleche(struct_processus *s_etat_processus);
                   2393: void instruction_lchol(struct_processus *s_etat_processus);
                   2394: void instruction_le(struct_processus *s_etat_processus);
                   2395: void instruction_legv(struct_processus *s_etat_processus);
                   2396: void instruction_line(struct_processus *s_etat_processus);
                   2397: void instruction_list_fleche(struct_processus *s_etat_processus);
                   2398: void instruction_ln(struct_processus *s_etat_processus);
                   2399: void instruction_lnp1(struct_processus *s_etat_processus);
                   2400: void instruction_localization(struct_processus *s_etat_processus);
                   2401: void instruction_lock(struct_processus *s_etat_processus);
                   2402: void instruction_log(struct_processus *s_etat_processus);
                   2403: void instruction_logger(struct_processus *s_etat_processus);
                   2404: void instruction_logscale(struct_processus *s_etat_processus);
                   2405: void instruction_lq(struct_processus *s_etat_processus);
                   2406: void instruction_lsq(struct_processus *s_etat_processus);
                   2407: void instruction_lt(struct_processus *s_etat_processus);
                   2408: void instruction_lu(struct_processus *s_etat_processus);
                   2409: 
                   2410: void instruction_mant(struct_processus *s_etat_processus);
                   2411: void instruction_mark(struct_processus *s_etat_processus);
                   2412: void instruction_max(struct_processus *s_etat_processus);
                   2413: void instruction_maxs(struct_processus *s_etat_processus);
                   2414: void instruction_mclrin(struct_processus *s_etat_processus);
                   2415: void instruction_mean(struct_processus *s_etat_processus);
                   2416: void instruction_mem(struct_processus *s_etat_processus);
1.32      bertrand 2417: void instruction_memlock(struct_processus *s_etat_processus);
                   2418: void instruction_memunlock(struct_processus *s_etat_processus);
1.1       bertrand 2419: void instruction_min(struct_processus *s_etat_processus);
                   2420: void instruction_mins(struct_processus *s_etat_processus);
                   2421: void instruction_mod(struct_processus *s_etat_processus);
                   2422: void instruction_moins(struct_processus *s_etat_processus);
                   2423: void instruction_mtxlock(struct_processus *s_etat_processus);
                   2424: void instruction_mtxstatus(struct_processus *s_etat_processus);
                   2425: void instruction_mtxtrylock(struct_processus *s_etat_processus);
                   2426: void instruction_mtxunlock(struct_processus *s_etat_processus);
                   2427: void instruction_multiplication(struct_processus *s_etat_processus);
                   2428: 
                   2429: void instruction_ne(struct_processus *s_etat_processus);
                   2430: void instruction_neg(struct_processus *s_etat_processus);
                   2431: void instruction_next(struct_processus *s_etat_processus);
                   2432: void instruction_newplane(struct_processus *s_etat_processus);
                   2433: void instruction_not(struct_processus *s_etat_processus);
                   2434: void instruction_nrand(struct_processus *s_etat_processus);
                   2435: void instruction_nrproc(struct_processus *s_etat_processus);
                   2436: void instruction_ns(struct_processus *s_etat_processus);
                   2437: void instruction_num(struct_processus *s_etat_processus);
                   2438: 
                   2439: void instruction_obget(struct_processus *s_etat_processus);
                   2440: void instruction_obsub(struct_processus *s_etat_processus);
                   2441: void instruction_oct(struct_processus *s_etat_processus);
                   2442: void instruction_open(struct_processus *s_etat_processus);
                   2443: void instruction_or(struct_processus *s_etat_processus);
                   2444: void instruction_over(struct_processus *s_etat_processus);
                   2445: 
                   2446: void instruction_p_vers_r(struct_processus *s_etat_processus);
                   2447: void instruction_paper(struct_processus *s_etat_processus);
                   2448: void instruction_parameter(struct_processus *s_etat_processus);
                   2449: void instruction_parametric(struct_processus *s_etat_processus);
                   2450: void instruction_pcov(struct_processus *s_etat_processus);
                   2451: void instruction_peek(struct_processus *s_etat_processus);
                   2452: void instruction_perm(struct_processus *s_etat_processus);
                   2453: void instruction_persist(struct_processus *s_etat_processus);
                   2454: void instruction_pi(struct_processus *s_etat_processus);
                   2455: void instruction_pick(struct_processus *s_etat_processus);
                   2456: void instruction_plot(struct_processus *s_etat_processus);
                   2457: void instruction_plotter(struct_processus *s_etat_processus);
                   2458: void instruction_plus(struct_processus *s_etat_processus);
                   2459: void instruction_pmax(struct_processus *s_etat_processus);
                   2460: void instruction_pmin(struct_processus *s_etat_processus);
                   2461: void instruction_poke(struct_processus *s_etat_processus);
                   2462: void instruction_polar(struct_processus *s_etat_processus);
                   2463: void instruction_pos(struct_processus *s_etat_processus);
                   2464: void instruction_pourcent(struct_processus *s_etat_processus);
                   2465: void instruction_pourcent_ch(struct_processus *s_etat_processus);
                   2466: void instruction_pourcent_t(struct_processus *s_etat_processus);
                   2467: void instruction_ppar(struct_processus *s_etat_processus);
                   2468: void instruction_pr1(struct_processus *s_etat_processus);
                   2469: void instruction_print(struct_processus *s_etat_processus);
                   2470: void instruction_private(struct_processus *s_etat_processus);
                   2471: void instruction_prlcd(struct_processus *s_etat_processus);
                   2472: void instruction_prmd(struct_processus *s_etat_processus);
1.34      bertrand 2473: void instruction_procid(struct_processus *s_etat_processus);
1.1       bertrand 2474: void instruction_prompt(struct_processus *s_etat_processus);
                   2475: void instruction_protect(struct_processus *s_etat_processus);
                   2476: void instruction_prst(struct_processus *s_etat_processus);
                   2477: void instruction_prstc(struct_processus *s_etat_processus);
                   2478: void instruction_prusr(struct_processus *s_etat_processus);
                   2479: void instruction_prvar(struct_processus *s_etat_processus);
                   2480: void instruction_psdev(struct_processus *s_etat_processus);
                   2481: void instruction_puissance(struct_processus *s_etat_processus);
                   2482: void instruction_purge(struct_processus *s_etat_processus);
                   2483: void instruction_pshcntxt(struct_processus *s_etat_processus);
                   2484: void instruction_pshprfl(struct_processus *s_etat_processus);
                   2485: void instruction_pulcntxt(struct_processus *s_etat_processus);
                   2486: void instruction_pulprfl(struct_processus *s_etat_processus);
                   2487: void instruction_put(struct_processus *s_etat_processus);
                   2488: void instruction_putc(struct_processus *s_etat_processus);
                   2489: void instruction_puti(struct_processus *s_etat_processus);
                   2490: void instruction_putr(struct_processus *s_etat_processus);
                   2491: void instruction_pvar(struct_processus *s_etat_processus);
                   2492: 
                   2493: void instruction_qr(struct_processus *s_etat_processus);
                   2494: 
                   2495: void instruction_r_vers_b(struct_processus *s_etat_processus);
                   2496: void instruction_r_vers_c(struct_processus *s_etat_processus);
                   2497: void instruction_r_vers_d(struct_processus *s_etat_processus);
                   2498: void instruction_r_vers_p(struct_processus *s_etat_processus);
                   2499: void instruction_rad(struct_processus *s_etat_processus);
                   2500: void instruction_rand(struct_processus *s_etat_processus);
                   2501: void instruction_rank(struct_processus *s_etat_processus);
                   2502: void instruction_rceq(struct_processus *s_etat_processus);
                   2503: void instruction_rci(struct_processus *s_etat_processus);
                   2504: void instruction_rcij(struct_processus *s_etat_processus);
                   2505: void instruction_rcl(struct_processus *s_etat_processus);
                   2506: void instruction_rclf(struct_processus *s_etat_processus);
                   2507: void instruction_rcls(struct_processus *s_etat_processus);
                   2508: void instruction_rclswi(struct_processus *s_etat_processus);
                   2509: void instruction_rcws(struct_processus *s_etat_processus);
                   2510: void instruction_rdate(struct_processus *s_etat_processus);
                   2511: void instruction_rdm(struct_processus *s_etat_processus);
                   2512: void instruction_rdgn(struct_processus *s_etat_processus);
                   2513: void instruction_rdz(struct_processus *s_etat_processus);
                   2514: void instruction_re(struct_processus *s_etat_processus);
                   2515: void instruction_read(struct_processus *s_etat_processus);
                   2516: void instruction_recode(struct_processus *s_etat_processus);
                   2517: void instruction_recv(struct_processus *s_etat_processus);
                   2518: void instruction_redraw(struct_processus *s_etat_processus);
                   2519: void instruction_relax(struct_processus *s_etat_processus);
                   2520: void instruction_remove(struct_processus *s_etat_processus);
                   2521: void instruction_res(struct_processus *s_etat_processus);
                   2522: void instruction_recall(struct_processus *s_etat_processus);
                   2523: void instruction_regv(struct_processus *s_etat_processus);
                   2524: void instruction_repeat(struct_processus *s_etat_processus);
                   2525: void instruction_repl(struct_processus *s_etat_processus);
                   2526: void instruction_return(struct_processus *s_etat_processus);
                   2527: void instruction_revlist(struct_processus *s_etat_processus);
                   2528: void instruction_rewind(struct_processus *s_etat_processus);
                   2529: void instruction_rfuse(struct_processus *s_etat_processus);
                   2530: void instruction_rl(struct_processus *s_etat_processus);
                   2531: void instruction_rlb(struct_processus *s_etat_processus);
                   2532: void instruction_rnd(struct_processus *s_etat_processus);
                   2533: void instruction_rnrm(struct_processus *s_etat_processus);
                   2534: void instruction_roll(struct_processus *s_etat_processus);
                   2535: void instruction_rolld(struct_processus *s_etat_processus);
                   2536: void instruction_rot(struct_processus *s_etat_processus);
                   2537: void instruction_row_fleche(struct_processus *s_etat_processus);
                   2538: void instruction_row_moins(struct_processus *s_etat_processus);
                   2539: void instruction_row_plus(struct_processus *s_etat_processus);
                   2540: void instruction_rr(struct_processus *s_etat_processus);
                   2541: void instruction_rrb(struct_processus *s_etat_processus);
                   2542: void instruction_rsd(struct_processus *s_etat_processus);
                   2543: void instruction_rstop(struct_processus *s_etat_processus);
                   2544: void instruction_rswp(struct_processus *s_etat_processus);
                   2545: 
                   2546: void instruction_s_moins(struct_processus *s_etat_processus);
                   2547: void instruction_s_plus(struct_processus *s_etat_processus);
                   2548: void instruction_same(struct_processus *s_etat_processus);
                   2549: void instruction_save(struct_processus *s_etat_processus);
                   2550: void instruction_scatter(struct_processus *s_etat_processus);
                   2551: void instruction_scale(struct_processus *s_etat_processus);
                   2552: void instruction_sched(struct_processus *s_etat_processus);
                   2553: void instruction_schur(struct_processus *s_etat_processus);
                   2554: void instruction_sci(struct_processus *s_etat_processus);
                   2555: void instruction_scls(struct_processus *s_etat_processus);
                   2556: void instruction_sconj(struct_processus *s_etat_processus);
                   2557: void instruction_sdev(struct_processus *s_etat_processus);
                   2558: void instruction_select(struct_processus *s_etat_processus);
                   2559: void instruction_send(struct_processus *s_etat_processus);
                   2560: void instruction_sf(struct_processus *s_etat_processus);
                   2561: void instruction_shared(struct_processus *s_etat_processus);
                   2562: void instruction_sign(struct_processus *s_etat_processus);
                   2563: void instruction_sin(struct_processus *s_etat_processus);
                   2564: void instruction_sinh(struct_processus *s_etat_processus);
                   2565: void instruction_sinv(struct_processus *s_etat_processus);
                   2566: void instruction_size(struct_processus *s_etat_processus);
                   2567: void instruction_sl(struct_processus *s_etat_processus);
                   2568: void instruction_slb(struct_processus *s_etat_processus);
                   2569: void instruction_slice(struct_processus *s_etat_processus);
                   2570: void instruction_slicescale(struct_processus *s_etat_processus);
                   2571: void instruction_smphrdecr(struct_processus *s_etat_processus);
                   2572: void instruction_smphrgetv(struct_processus *s_etat_processus);
                   2573: void instruction_smphrincr(struct_processus *s_etat_processus);
                   2574: void instruction_smphrtrydecr(struct_processus *s_etat_processus);
                   2575: void instruction_sneg(struct_processus *s_etat_processus);
                   2576: void instruction_sort(struct_processus *s_etat_processus);
                   2577: void instruction_spar(struct_processus *s_etat_processus);
                   2578: void instruction_spawn(struct_processus *s_etat_processus);
                   2579: void instruction_splash(struct_processus *s_etat_processus);
                   2580: void instruction_sq(struct_processus *s_etat_processus);
                   2581: void instruction_sqlconnect(struct_processus *s_etat_processus);
                   2582: void instruction_sqldisconnect(struct_processus *s_etat_processus);
                   2583: void instruction_sqlquery(struct_processus *s_etat_processus);
                   2584: void instruction_sqrt(struct_processus *s_etat_processus);
                   2585: void instruction_sr(struct_processus *s_etat_processus);
                   2586: void instruction_srb(struct_processus *s_etat_processus);
                   2587: void instruction_sst(struct_processus *s_etat_processus);
                   2588: void instruction_star_d(struct_processus *s_etat_processus);
                   2589: void instruction_star_h(struct_processus *s_etat_processus);
                   2590: void instruction_star_s(struct_processus *s_etat_processus);
                   2591: void instruction_star_w(struct_processus *s_etat_processus);
                   2592: void instruction_start(struct_processus *s_etat_processus);
                   2593: void instruction_static(struct_processus *s_etat_processus);
                   2594: void instruction_std(struct_processus *s_etat_processus);
                   2595: void instruction_step(struct_processus *s_etat_processus);
                   2596: void instruction_steq(struct_processus *s_etat_processus);
                   2597: void instruction_sto(struct_processus *s_etat_processus);
                   2598: void instruction_sto_division(struct_processus *s_etat_processus);
                   2599: void instruction_sto_fois(struct_processus *s_etat_processus);
                   2600: void instruction_sto_moins(struct_processus *s_etat_processus);
                   2601: void instruction_sto_plus(struct_processus *s_etat_processus);
                   2602: void instruction_stof(struct_processus *s_etat_processus);
                   2603: void instruction_stop(struct_processus *s_etat_processus);
                   2604: void instruction_store(struct_processus *s_etat_processus);
                   2605: void instruction_stos(struct_processus *s_etat_processus);
                   2606: void instruction_stoswi(struct_processus *s_etat_processus);
                   2607: void instruction_str_fleche(struct_processus *s_etat_processus);
                   2608: void instruction_stws(struct_processus *s_etat_processus);
                   2609: void instruction_sub(struct_processus *s_etat_processus);
                   2610: void instruction_suspend(struct_processus *s_etat_processus);
                   2611: void instruction_svd(struct_processus *s_etat_processus);
                   2612: void instruction_svl(struct_processus *s_etat_processus);
                   2613: void instruction_swap(struct_processus *s_etat_processus);
                   2614: void instruction_swi(struct_processus *s_etat_processus);
                   2615: void instruction_swilock(struct_processus *s_etat_processus);
                   2616: void instruction_swiqueue(struct_processus *s_etat_processus);
                   2617: void instruction_swistatus(struct_processus *s_etat_processus);
                   2618: void instruction_swiunlock(struct_processus *s_etat_processus);
                   2619: void instruction_swapcntxt(struct_processus *s_etat_processus);
                   2620: void instruction_sx(struct_processus *s_etat_processus);
                   2621: void instruction_sx2(struct_processus *s_etat_processus);
                   2622: void instruction_sxy(struct_processus *s_etat_processus);
                   2623: void instruction_sy(struct_processus *s_etat_processus);
                   2624: void instruction_sy2(struct_processus *s_etat_processus);
                   2625: void instruction_sync(struct_processus *s_etat_processus);
                   2626: void instruction_syseval(struct_processus *s_etat_processus);
                   2627: 
                   2628: void instruction_table_fleche(struct_processus *s_etat_processus);
                   2629: void instruction_tail(struct_processus *s_etat_processus);
                   2630: void instruction_tan(struct_processus *s_etat_processus);
                   2631: void instruction_tanh(struct_processus *s_etat_processus);
                   2632: void instruction_target(struct_processus *s_etat_processus);
                   2633: void instruction_taylr(struct_processus *s_etat_processus);
                   2634: void instruction_then(struct_processus *s_etat_processus);
                   2635: void instruction_time(struct_processus *s_etat_processus);
                   2636: void instruction_title(struct_processus *s_etat_processus);
                   2637: void instruction_tokenize(struct_processus *s_etat_processus);
                   2638: void instruction_tot(struct_processus *s_etat_processus);
                   2639: void instruction_trim(struct_processus *s_etat_processus);
                   2640: void instruction_trn(struct_processus *s_etat_processus);
                   2641: void instruction_trnc(struct_processus *s_etat_processus);
                   2642: void instruction_true(struct_processus *s_etat_processus);
                   2643: void instruction_type(struct_processus *s_etat_processus);
                   2644: 
                   2645: void instruction_ucase(struct_processus *s_etat_processus);
                   2646: void instruction_uchol(struct_processus *s_etat_processus);
                   2647: void instruction_undo(struct_processus *s_etat_processus);
                   2648: void instruction_unlock(struct_processus *s_etat_processus);
                   2649: void instruction_unprotect(struct_processus *s_etat_processus);
                   2650: void instruction_until(struct_processus *s_etat_processus);
                   2651: void instruction_use(struct_processus *s_etat_processus);
                   2652: void instruction_utpc(struct_processus *s_etat_processus);
                   2653: void instruction_utpf(struct_processus *s_etat_processus);
                   2654: void instruction_utpn(struct_processus *s_etat_processus);
                   2655: void instruction_utpt(struct_processus *s_etat_processus);
                   2656: 
                   2657: void instruction_var(struct_processus *s_etat_processus);
                   2658: void instruction_variable(struct_processus *s_etat_processus);
                   2659: void instruction_vars(struct_processus *s_etat_processus);
                   2660: void instruction_verify(struct_processus *s_etat_processus);
                   2661: void instruction_vers_niveau_inferieur(struct_processus *s_etat_processus);
                   2662: void instruction_vers_niveau_superieur(struct_processus *s_etat_processus);
                   2663: void instruction_version(struct_processus *s_etat_processus);
                   2664: void instruction_visit(struct_processus *s_etat_processus);
                   2665: void instruction_volatile(struct_processus *s_etat_processus);
                   2666: 
                   2667: void instruction_wait(struct_processus *s_etat_processus);
                   2668: void instruction_warranty(struct_processus *s_etat_processus);
                   2669: void instruction_wfdata(struct_processus *s_etat_processus);
                   2670: void instruction_wfack(struct_processus *s_etat_processus);
                   2671: void instruction_wflock(struct_processus *s_etat_processus);
                   2672: void instruction_wfpoke(struct_processus *s_etat_processus);
                   2673: void instruction_wfproc(struct_processus *s_etat_processus);
                   2674: void instruction_wfsock(struct_processus *s_etat_processus);
                   2675: void instruction_wfswi(struct_processus *s_etat_processus);
                   2676: void instruction_while(struct_processus *s_etat_processus);
                   2677: void instruction_wireframe(struct_processus *s_etat_processus);
                   2678: void instruction_workdir(struct_processus *s_etat_processus);
                   2679: void instruction_write(struct_processus *s_etat_processus);
                   2680: 
                   2681: void instruction_xcol(struct_processus *s_etat_processus);
                   2682: void instruction_xor(struct_processus *s_etat_processus);
                   2683: void instruction_xpon(struct_processus *s_etat_processus);
                   2684: void instruction_xroot(struct_processus *s_etat_processus);
                   2685: 
                   2686: void instruction_ycol(struct_processus *s_etat_processus);
                   2687: void instruction_yield(struct_processus *s_etat_processus);
                   2688: 
                   2689: /*
                   2690: --------------------------------------------------------------------------------
                   2691:   Procédures
                   2692: --------------------------------------------------------------------------------
                   2693: */
                   2694: 
                   2695: #ifndef RPLARGS
                   2696: void affectation_interruptions_logicielles(struct_processus *s_etat_processus);
                   2697: void affichage_pile(struct_processus *s_etat_processus,
                   2698:        struct_liste_chainee *l_element_courant, unsigned long
                   2699:        niveau_courant);
                   2700: #endif
                   2701: 
                   2702: void *allocation(struct_processus *s_etat_processus, enum t_type type);
                   2703: void *allocation_maillon(struct_processus *s_etat_processus);
                   2704: 
                   2705: #ifndef RPLARGS
                   2706: void analyse(struct_processus *s_etat_processus, void (*fonction)());
1.34      bertrand 2707: void *analyse_instruction(struct_processus *s_etat_processus,
1.1       bertrand 2708:        unsigned char *candidat);
                   2709: void appel_gnuplot(struct_processus *s_etat_processus,
                   2710:        unsigned char persistance);
                   2711: void cf(struct_processus *s_etat_processus, unsigned char indice_drapeau);
                   2712: void cond(struct_processus *s_etat_processus,
                   2713:        struct_matrice *s_matrice, real8 *condition);
                   2714: void conversion_decimal_vers_hms(real8 *angle);
                   2715: void conversion_degres_vers_radians(real8 *angle);
                   2716: void conversion_element_tex(unsigned char **element, unsigned char *fonction);
                   2717: void conversion_format(struct_processus *s_etat_processus,
                   2718:        unsigned char *chaine);
                   2719: void conversion_hms_vers_decimal(real8 *angle);
1.31      bertrand 2720: void conversion_majuscule_limitee(unsigned char *chaine_entree, 
                   2721:        unsigned char *chaine_sortie, unsigned long longueur);
1.1       bertrand 2722: void conversion_radians_vers_degres(real8 *angle);
                   2723: void correction_formateur_tex(struct_processus *s_etat_processus,
                   2724:        unsigned char **ligne);
                   2725: void depilement_pile_systeme(struct_processus *s_etat_processus);
                   2726: void derivation(struct_processus *s_etat_processus,
                   2727:        struct_objet **s_expression);
                   2728: void determinant(struct_processus *s_etat_processus, struct_matrice *s_matrice,
                   2729:        void *valeur);
                   2730: void deverrouillage_threads_concurrents(struct_processus *s_etat_processus);
                   2731: void ecriture_pile(struct_processus *s_etat_processus, file *flux,
                   2732:        struct_liste_chainee *l_element_courant, unsigned long niveau_courant);
                   2733: void ecriture_profil(struct_processus *s_etat_processus);
1.23      bertrand 2734: void effacement_pile_systeme(struct_processus *s_etat_processus);
1.1       bertrand 2735: void empilement_pile_systeme(struct_processus *s_etat_processus);
                   2736: void encart(struct_processus *s_etat_processus, unsigned long duree);
                   2737: void evaluation_romberg(struct_processus *s_etat_processus,
                   2738:        struct_objet *s_expression, unsigned char *variable, real8 *point,
                   2739:        real8 *valeur, logical1 *validite);
                   2740: void factorisation_cholesky(struct_processus *s_etat_processus,
                   2741:        struct_matrice *s_matrice, unsigned char mode);
                   2742: void factorisation_lq(struct_processus *s_etat_processus,
                   2743:        struct_matrice *s_matrice, void **tau);
                   2744: void factorisation_lu(struct_processus *s_etat_processus,
                   2745:        struct_matrice *s_matrice, struct_matrice **s_permutation);
                   2746: void factorisation_qr(struct_processus *s_etat_processus,
                   2747:        struct_matrice *s_matrice, void **tau);
                   2748: void factorisation_schur(struct_processus *s_etat_processus,
                   2749:        struct_matrice *s_matrice, struct_matrice **s_schur);
                   2750: void *fusible(void *argument);
                   2751: void formateur_tex(struct_processus *s_etat_processus, struct_objet *s_objet,
                   2752:        unsigned char environnement);
                   2753: void formateur_elementaire_tex(struct_processus *s_etat_processus,
                   2754:        file *fichier, struct_objet *s_objet, unsigned char environnement);
                   2755: void impression_pile(struct_processus *s_etat_processus,
                   2756:            struct_liste_chainee *l_element_courant,
                   2757:            unsigned char methode, unsigned long niveau_courant);
                   2758: void impression_tex(struct_processus *s_etat_processus);
                   2759: void informations(struct_processus *s_etat_processus);
                   2760: void initialisation_allocateur(struct_processus *s_etat_processus);
                   2761: void initialisation_completion(void);
                   2762: void initialisation_drapeaux(struct_processus *s_etat_processus);
                   2763: void initialisation_generateur_aleatoire(struct_processus *s_etat_processus,
                   2764:        logical1 initialisation_automatique, unsigned long int racine);
                   2765: void initialisation_instructions(struct_processus *s_etat_processus);
                   2766: #endif
                   2767: 
                   2768: void initialisation_objet(struct_objet *s_objet);
                   2769: 
                   2770: #ifndef RPLARGS
                   2771: void insertion_thread(struct_processus *s_etat_processus,
                   2772:        logical1 thread_principal);
                   2773: void insertion_thread_surveillance(struct_processus *s_etat_processus,
                   2774:        struct_descripteur_thread *s_argument_thread);
                   2775: void integrale_romberg(struct_processus *s_etat_processus,
                   2776:        struct_objet *s_expression, unsigned char *variable,
                   2777:        real8 a, real8 b, real8 precision);
1.57      bertrand 2778: void interruption1(SIGHANDLER_ARGS);
                   2779: void interruption2(SIGHANDLER_ARGS);
                   2780: void interruption3(SIGHANDLER_ARGS);
                   2781: void interruption4(SIGHANDLER_ARGS);
                   2782: void interruption5(SIGHANDLER_ARGS);
                   2783: void interruption6(SIGHANDLER_ARGS);
                   2784: void interruption7(SIGHANDLER_ARGS);
                   2785: void interruption8(SIGHANDLER_ARGS);
                   2786: void interruption9(SIGHANDLER_ARGS);
                   2787: void interruption10(SIGHANDLER_ARGS);
                   2788: void interruption11(SIGHANDLER_ARGS);
1.1       bertrand 2789: void inversion_matrice(struct_processus *s_etat_processus,
                   2790:        struct_matrice *s_matrice);
                   2791: void lancement_daemon(struct_processus *s_etat_processus);
                   2792: void *lancement_thread(void *argument);
                   2793: #endif
                   2794: 
                   2795: void liberation(struct_processus *s_etat_processus, struct_objet *s_objet);
                   2796: void liberation_maillon(struct_processus *s_etat_processus,
                   2797:        struct_liste_chainee *maillon);
                   2798: 
                   2799: #ifndef RPLARGS
                   2800: void liberation_allocateur(struct_processus *s_etat_processus);
                   2801: void liberation_arbre_instructions(struct_processus *s_etat_processus,
                   2802:        struct_instruction *arbre);
                   2803: void liberation_generateur_aleatoire(struct_processus *s_etat_processus);
                   2804: void liberation_threads(struct_processus *s_etat_processus);
                   2805: void liberation_profil(struct_processus *s_etat_processus);
                   2806: void localisation_courante(struct_processus *s_etat_processus);
                   2807: void modification_pid_thread_pere(struct_processus *s_etat_processus);
                   2808: void moindres_carres(struct_processus *s_etat_processus,
                   2809:        struct_matrice *s_matrice_a, struct_matrice *s_matrice_b,
                   2810:        struct_matrice *s_matrice_x);
                   2811: void profilage(struct_processus *s_etat_processus, unsigned char *fonction);
                   2812: void rang(struct_processus *s_etat_processus, struct_matrice *s_matrice,
                   2813:        integer8 *valeur);
                   2814: void recherche_type(struct_processus *s_etat_processus);
                   2815: void retrait_thread(struct_processus *s_etat_processus);
                   2816: void retrait_thread_surveillance(struct_processus *s_etat_processus,
                   2817:        struct_descripteur_thread *s_argument_thread);
                   2818: void rplcore(struct_processus *s_etat_processus);
1.34      bertrand 2819: void scrutation_injection(struct_processus *s_etat_processus);
1.1       bertrand 2820: void sf(struct_processus *s_etat_processus, unsigned char indice_drapeau);
                   2821: void *surveillance_processus(void *argument);
                   2822: void swap(void *variable_1, void *variable_2, unsigned long taille_octets);
1.44      bertrand 2823: void trace(struct_processus *s_etat_processus, FILE *flux);
1.1       bertrand 2824: void traitement_asynchrone_exceptions_gsl(struct_processus *s_etat_processus);
                   2825: void traitement_exceptions_gsl(const char *reason, const char *file,
                   2826:        int line, int gsl_errno);
                   2827: void traitement_interruptions_logicielles(struct_processus *s_etat_processus);
                   2828: void tri_base_symboles_externes(struct_processus *s_etat_processus);
                   2829: void tri_vecteur(real8 *vecteur, unsigned long taille);
                   2830: void valeurs_propres(struct_processus *s_etat_processus,
                   2831:        struct_matrice *s_matrice,
                   2832:        struct_vecteur *s_valeurs_propres,
                   2833:        struct_matrice *s_vecteurs_propres_gauches,
                   2834:        struct_matrice *s_vecteur_propres_droits);
                   2835: void valeurs_propres_generalisees(struct_processus *s_etat_processus,
                   2836:        struct_matrice *s_matrice,
                   2837:        struct_matrice *s_metrique,
                   2838:        struct_vecteur *s_valeurs_propres,
                   2839:        struct_matrice *s_vecteurs_propres_gauches,
                   2840:        struct_matrice *s_vecteur_propres_droits);
                   2841: void valeurs_singulieres(struct_processus *s_etat_processus,
                   2842:        struct_matrice *s_matrice,
                   2843:        struct_matrice *u, struct_vecteur *s, struct_matrice *vh);
                   2844: void verrouillage_threads_concurrents(struct_processus *s_etat_processus);
                   2845: #endif
                   2846: 
1.57      bertrand 2847: #ifndef RPLARGS
                   2848: #ifdef _BROKEN_SIGINFO
                   2849: void creation_fifos_signaux(struct_processus *s_etat_processus);
                   2850: void destruction_fifos_signaux(struct_processus *s_etat_processus);
                   2851: void liberation_fifos_signaux(struct_processus *s_etat_processus);
                   2852: #endif
                   2853: #endif
                   2854: 
1.1       bertrand 2855: /*
                   2856: --------------------------------------------------------------------------------
                   2857:   Fonctions de sommation de vecteur dans perte de précision
                   2858: --------------------------------------------------------------------------------
                   2859: */
                   2860: 
                   2861: real8 sommation_vecteur_reel(real8 *vecteur, unsigned long *taille,
                   2862:        logical1 *erreur_memoire);
                   2863: complex16 sommation_vecteur_complexe(complex16 *vecteur, unsigned long *taille,
                   2864:        logical1 *erreur_memoire);
                   2865: 
                   2866: /*
                   2867: --------------------------------------------------------------------------------
                   2868:   Routine principale
                   2869: --------------------------------------------------------------------------------
                   2870: */
                   2871: 
                   2872: #ifndef RPLARGS
1.13      bertrand 2873: int rplinit(int argc, char *argv[], unsigned char ***resultats, char *rpl_home);
1.1       bertrand 2874: #endif
                   2875: 
                   2876: /*
                   2877: --------------------------------------------------------------------------------
                   2878:   Routines de statistiques
                   2879: --------------------------------------------------------------------------------
                   2880: */
                   2881: 
                   2882: #ifndef RPLARGS
                   2883: real8 correlation_statistique(struct_matrice *s_matrice,
                   2884:        unsigned long colonne_1, unsigned long colonne_2, logical1 *erreur);
                   2885: real8 covariance_statistique(struct_matrice *s_matrice,
                   2886:        unsigned long colonne_1, unsigned long colonne_2,
                   2887:        unsigned char type, logical1 *erreur);
                   2888: struct_vecteur *ecart_type_statistique(struct_matrice *s_matrice,
                   2889:        unsigned char type);
                   2890: struct_vecteur *moyenne_statistique(struct_matrice *s_matrice);
                   2891: struct_vecteur *sommation_colonne_statistique(struct_matrice *s_matrice,
                   2892:        unsigned long colonne);
                   2893: struct_vecteur *sommation_produits_colonnes_statistiques(struct_matrice
                   2894:        *s_matrice, unsigned long colonne_1, unsigned long colonne_2);
                   2895: struct_vecteur *sommation_statistique(struct_matrice *s_matrice);
                   2896: struct_vecteur *variance_statistique(struct_matrice *s_matrice,
                   2897:        unsigned char type);
                   2898: #endif
                   2899: 
                   2900: /*
                   2901: --------------------------------------------------------------------------------
                   2902:   Gestion des bibliothèques
                   2903: --------------------------------------------------------------------------------
                   2904: */
                   2905: 
                   2906: #ifndef RPLARGS
                   2907: void *chargement_bibliotheque(struct_processus *s_etat_processus,
                   2908:        unsigned char *bibliotheque);
                   2909: logical1 execution_fonction_de_bibliotheque(struct_processus *s_etat_processus,
                   2910:        unsigned char *nom_fonction, unsigned char *bibliothque);
                   2911: logical1 retrait_bibliotheque(struct_processus *s_etat_processus,
                   2912:        struct_bibliotheque *descripteur);
                   2913: #endif
                   2914: 
                   2915: struct_liste_chainee *depilement_pile_operationnelle(struct_rpl_arguments
                   2916:        *s_rpl_arguments, struct_objet **s_objet);
                   2917: struct_liste_chainee *empilement_pile_operationnelle(struct_rpl_arguments
                   2918:        *s_rpl_arguments, struct_objet *s_objet);
                   2919: struct_liste_chainee *sauvegarde_arguments(struct_rpl_arguments
                   2920:        *s_rpl_arguments, unsigned long nombre_arguments);
                   2921: 
                   2922: /*
                   2923: --------------------------------------------------------------------------------
                   2924:   Fonctions retournant un CHARACTER*(*)
                   2925: --------------------------------------------------------------------------------
                   2926: */
                   2927: 
                   2928: #ifndef RPLARGS
                   2929: unsigned char *analyse_algebrique(struct_processus *s_etat_processus,
                   2930:        unsigned char *chaine_algebrique, struct_liste_chainee **l_base_liste);
                   2931: unsigned char *recherche_chemin_fichiers_temporaires(struct_processus
                   2932:        *s_etat_processus);
                   2933: unsigned char *compactage(unsigned char *chaine);
                   2934: unsigned char *conversion_majuscule(unsigned char *chaine);
                   2935: unsigned char *creation_nom_fichier(struct_processus *s_etat_processus,
                   2936:        unsigned char *chemin);
                   2937: unsigned char *extraction_chaine(unsigned char *chaine, unsigned long i,
                   2938:        unsigned long j);
                   2939: unsigned char *formateur(struct_processus *s_etat_processus, long offset,
                   2940:        struct_objet *s_objet);
                   2941: unsigned char *formateur_fichier(struct_processus *s_etat_processus,
                   2942:        struct_objet *s_objet, struct_objet *s_format,
                   2943:        long longueur, long longueur_champ, unsigned char format,
                   2944:        unsigned char type, long *longueur_effective, long *recursivite);
                   2945: unsigned char *formateur_fichier_nombre(struct_processus *s_etat_processus,
                   2946:        void *valeur_numerique, unsigned char type,
                   2947:        long longueur, long longueur_champ, unsigned char format);
                   2948: unsigned char *formateur_fichier_reel(struct_processus *s_etat_processus,
                   2949:        void *valeur_numerique, unsigned char type,
                   2950:        long longueur, long longueur_champ, unsigned char format);
                   2951: unsigned char *formateur_nombre(struct_processus *s_etat_processus,
                   2952:        void *valeur_numerique, unsigned char type);
                   2953: unsigned char *formateur_reel(struct_processus *s_etat_processus,
                   2954:        void *valeur_numerique, unsigned char type);
                   2955: unsigned char *messages(struct_processus *s_etat_processus);
                   2956: unsigned char *purification_chaine(unsigned char *chaine);
                   2957: unsigned char *reencodage(struct_processus *s_etat_processus,
                   2958:        unsigned char *chaine_entree, unsigned char *codage_entree,
                   2959:        unsigned char *codage_sortie);
                   2960: unsigned char *transliteration(struct_processus *s_etat_processus,
                   2961:        unsigned char *chaine_entree, unsigned char *codage_entree,
                   2962:        unsigned char *codage_sortie);
                   2963: #endif
                   2964: 
                   2965: /*
                   2966: --------------------------------------------------------------------------------
                   2967:   Fonctions retournant un INTEGER*1 (drapeau d'erreur)
                   2968: --------------------------------------------------------------------------------
                   2969: */
                   2970: 
                   2971: #ifndef RPLARGS
                   2972: logical1 analyse_syntaxique(struct_processus *s_etat_processus);
                   2973: logical1 caracteristiques_fichier(struct_processus *s_etat_processus,
                   2974:        unsigned char *nom, logical1 *existence, logical1 *ouverture,
                   2975:        unsigned long *unite);
1.13      bertrand 2976: logical1 controle(struct_processus *s_etat_processus, unsigned char *fichier,
                   2977:        unsigned char *type, unsigned char *somme_candidate);
1.1       bertrand 2978: logical1 creation_variable(struct_processus *s_etat_processus,
                   2979:        struct_variable *s_variable,
                   2980:        unsigned char autorisation_creation_variable_statique,
                   2981:        unsigned char autorisation_creation_variable_partagee);
                   2982: logical1 creation_variable_partagee(struct_processus *s_etat_processus,
                   2983:        struct_variable_partagee *s_variable);
                   2984: logical1 creation_variable_statique(struct_processus *s_etat_processus,
                   2985:        struct_variable_statique *s_variable);
                   2986: logical1 chainage(struct_processus *s_etat_processus);
                   2987: logical1 compilation(struct_processus *s_etat_processus);
                   2988: logical1 depilement(struct_processus *s_etat_processus,
                   2989:        struct_liste_chainee **l_base_liste, struct_objet **s_objet);
                   2990: logical1 destruction_fichier(unsigned char *nom_fichier);
                   2991: logical1 empilement(struct_processus *s_etat_processus,
                   2992:        struct_liste_chainee **l_base_liste, struct_objet *s_objet);
                   2993: logical1 empilement_pile_last(struct_processus *s_etat_processus,
                   2994:        unsigned long nombre_arguments);
                   2995: logical1 evaluation(struct_processus *s_etat_processus, struct_objet *s_objet,
                   2996:        unsigned char type_evaluation);
1.15      bertrand 2997: logical1 initialisation_fichier_acces_direct(struct_processus *s_etat_processus,
                   2998:        sqlite3 *sqlite, logical1 binaire);
                   2999: logical1 initialisation_fichier_acces_indexe(struct_processus *s_etat_processus,
1.17      bertrand 3000:        sqlite3 *sqlite, integer8 position_clef, logical1 binaire);
1.1       bertrand 3001: logical1 recherche_instruction_suivante(struct_processus *s_etat_processus);
                   3002: logical1 retrait_variable(struct_processus *s_etat_processus,
                   3003:        unsigned char *nom_variable, unsigned char type);
                   3004: logical1 retrait_variable_par_niveau(struct_processus *s_etat_processus);
                   3005: logical1 retrait_variable_partagee(struct_processus *s_etat_processus,
                   3006:        unsigned char *nom_variable, union_position_variable position);
                   3007: logical1 retrait_variable_statique(struct_processus *s_etat_processus,
                   3008:        unsigned char *nom_variable, union_position_variable position);
                   3009: logical1 sequenceur(struct_processus *s_etat_processus);
                   3010: logical1 sequenceur_optimise(struct_processus *s_etat_processus);
                   3011: #endif
                   3012: 
                   3013: /*
                   3014: --------------------------------------------------------------------------------
                   3015:   Fonctions retournant un INTEGER*1 (drapeau)
                   3016: --------------------------------------------------------------------------------
                   3017: */
                   3018: 
                   3019: logical1 depassement_addition(integer8 *a, integer8 *b, integer8 *resultat);
                   3020: logical1 depassement_multiplication(integer8 *a, integer8 *b,
                   3021:        integer8 *resultat);
                   3022: logical1 depassement_puissance(integer8 *a, integer8 *b, integer8 *resultat);
                   3023: 
                   3024: #ifndef RPLARGS
                   3025: logical1 ecriture_pipe(struct_processus *s_etat_processus, int pipe,
                   3026:        struct_objet *s_objet);
                   3027: logical1 recherche_variable(struct_processus *s_etat_processus,
                   3028:        unsigned char *nom_variable);
                   3029: logical1 recherche_variable_partagee(struct_processus *s_etat_processus,
                   3030:        unsigned char *nom_variable, union_position_variable position,
                   3031:        unsigned char origine);
                   3032: logical1 recherche_variable_statique(struct_processus *s_etat_processus,
                   3033:        unsigned char *nom_variable, union_position_variable position,
                   3034:        unsigned char origine);
                   3035: logical1 test_cfsf(struct_processus *s_etat_processus,
                   3036:        unsigned char indice_drapeau);
                   3037: logical1 test_expression_rpn(unsigned char *chaine);
                   3038: logical1 test_fonction(unsigned char *chaine);
                   3039: #endif
                   3040: 
                   3041: /*
                   3042: --------------------------------------------------------------------------------
                   3043:   Fonctions retournant un ssize_t
                   3044: --------------------------------------------------------------------------------
                   3045: */
                   3046: 
                   3047: #ifndef RPLARGS
1.34      bertrand 3048: ssize_t read_atomic(struct_processus *s_etat_processus,
1.1       bertrand 3049:        int fd, void *buf, size_t count);
1.34      bertrand 3050: ssize_t write_atomic(struct_processus *s_etat_processus,
1.1       bertrand 3051:        int fd, void *buf, size_t count);
                   3052: #endif
                   3053: 
                   3054: /*
                   3055: --------------------------------------------------------------------------------
                   3056:   Fonctions renvoyant un int
                   3057: --------------------------------------------------------------------------------
                   3058: */
                   3059: 
1.4       bertrand 3060: int alsprintf(unsigned char **strp, const char *fmt, ...);
1.9       bertrand 3061: int tex_fprintf(struct_processus *s_etat_processus,
                   3062:        file *flux, const char *format, ...);
1.3       bertrand 3063: int transliterated_fprintf(struct_processus *s_etat_processus, file *flux,
                   3064:        const char *format, ...);
1.4       bertrand 3065: int valsprintf(unsigned char **strp, const char *fmt, va_list ap);
1.1       bertrand 3066: int wrapper_instruction_intrinseque(void (*fonction)(),
                   3067:        struct_rpl_arguments *rpl_arguments);
                   3068: 
                   3069: /*
                   3070: --------------------------------------------------------------------------------
                   3071:   Fonctions renvoyant un INTEGER*1 (longueur d'un entier binaire)
                   3072: --------------------------------------------------------------------------------
                   3073: */
                   3074: 
                   3075: #ifndef RPLARGS
                   3076: unsigned char longueur_entiers_binaires(struct_processus *s_etat_processus);
                   3077: unsigned char recherche_longueur_optimale(integer8 parametre);
                   3078: #endif
                   3079: 
                   3080: /*
                   3081: --------------------------------------------------------------------------------
                   3082:   Fonctions retournant un INTEGER*8 (valeur binaire non signée)
                   3083: --------------------------------------------------------------------------------
                   3084: */
                   3085: 
                   3086: #ifndef RPLARGS
                   3087: logical8 masque_entiers_binaires(struct_processus *s_etat_processus);
                   3088: #endif
                   3089: 
                   3090: /*
                   3091: --------------------------------------------------------------------------------
                   3092:   Fonctions retournant un INTEGER*8 (entier standard RPL/2)
                   3093: --------------------------------------------------------------------------------
                   3094: */
                   3095: 
                   3096: #ifndef RPLARGS
                   3097: integer8 occupation_memoire(struct_objet *s_objet);
                   3098: #endif
                   3099: 
                   3100: /*
                   3101: --------------------------------------------------------------------------------
                   3102:   Fonctions renvoyant une liste chaînée (pointeur sur *struct_liste_chainee)
                   3103: --------------------------------------------------------------------------------
                   3104: */
                   3105: 
                   3106: #ifndef RPLARGS
                   3107: struct_liste_chainee *analyse_rpn(struct_processus *s_etat_processus,
                   3108:        unsigned char *chaine_rpn);
                   3109: #endif
                   3110: 
                   3111: /*
                   3112: --------------------------------------------------------------------------------
                   3113:   Fonctions renvoyant une copie de la structure de description des processus
                   3114: --------------------------------------------------------------------------------
                   3115: */
                   3116: 
                   3117: #ifndef RPLARGS
                   3118: struct_processus *copie_etat_processus(struct_processus *s_etat_processus);
                   3119: #endif
                   3120: 
                   3121: /*
                   3122: --------------------------------------------------------------------------------
1.15      bertrand 3123:   Fonctions renvoyant un pointeur sur un fichier (file *) ou un descripteur
1.1       bertrand 3124: --------------------------------------------------------------------------------
                   3125: */
                   3126: 
                   3127: #ifndef RPLARGS
                   3128: file *creation_fichier_tex(struct_processus *s_etat_processus);
1.15      bertrand 3129: struct_descripteur_fichier *descripteur_fichier(struct_processus
                   3130:        *s_etat_processus, struct_fichier *s_fichier);
1.1       bertrand 3131: #endif
                   3132: 
                   3133: /*
                   3134: --------------------------------------------------------------------------------
                   3135:   Fonctions renvoyant un pointeur sur une *struct_objet
                   3136: --------------------------------------------------------------------------------
                   3137: */
                   3138: 
                   3139: struct_objet *copie_objet(struct_processus *s_etat_processus,
                   3140:        struct_objet *s_objet, unsigned char type);
                   3141: 
                   3142: #ifndef RPLARGS
                   3143: struct_objet *formateur_date(struct_processus *s_etat_processus,
                   3144:        struct timeval *temps);
                   3145: struct_objet *lecture_pipe(struct_processus *s_etat_processus, int pipe);
                   3146: struct_objet *parametres_sql(struct_processus *s_etat_processus,
                   3147:        struct_objet *s_parametres);
                   3148: struct_objet *simplification(struct_processus *s_etat_processus,
                   3149:        struct_objet *s_objet);
                   3150: #endif
                   3151: 
                   3152: /*
                   3153: --------------------------------------------------------------------------------
                   3154:   Fonctions gérant les arbres de simplification
                   3155: --------------------------------------------------------------------------------
                   3156: */
                   3157: 
                   3158: #ifndef RPLARGS
                   3159: struct_arbre *creation_arbre(struct_processus *s_etat_processus,
                   3160:        struct_objet **t_objets, unsigned long indice,
                   3161:        unsigned long indice_maximal);
                   3162: void liberation_arbre(struct_processus *s_etat_processus,
                   3163:        struct_arbre *s_noeud);
                   3164: void parcours_arbre(struct_processus *s_etat_processus, struct_arbre *s_noeud);
                   3165: void simplification_arbre(struct_processus *s_etat_processus,
                   3166:        struct_arbre *s_noeud);
                   3167: #endif
                   3168: 
                   3169: /*
                   3170: --------------------------------------------------------------------------------
                   3171:   Fonctions gérant la complétion automatique
                   3172: --------------------------------------------------------------------------------
                   3173: */
                   3174: 
                   3175: char **completion_rpl();
                   3176: char *generateur_commandes();
                   3177: char **completion_matches();
                   3178: 
                   3179: // END C PROTOTYPES
                   3180: 
                   3181: /*
                   3182: --------------------------------------------------------------------------------
                   3183:   Arithmétique
                   3184: --------------------------------------------------------------------------------
                   3185: */
                   3186: 
                   3187: void f77absc_(complex16 *c, real8 *resultat);
                   3188: 
                   3189: void f77additioncc_(complex16 *ca, complex16 *cb, complex16 *resultat);
                   3190: void f77additionci_(complex16 *ca, integer8 *ib, complex16 *resultat);
                   3191: void f77additioncr_(complex16 *ca, real8 *rb, complex16 *resultat);
                   3192: 
                   3193: void f77divisioncc_(complex16 *ca, complex16 *rb, complex16 *resultat);
                   3194: void f77divisionci_(complex16 *ca, integer8 *ib, complex16 *resultat);
                   3195: void f77divisioncr_(complex16 *ca, real8 *rb, complex16 *resultat);
                   3196: void f77divisionic_(integer8 *ib, complex16 *cb, complex16 *resultat);
                   3197: void f77divisionrc_(real8 *ra, complex16 *cb, complex16 *resultat);
                   3198: 
                   3199: void f77multiplicationcc_(complex16 *ca, complex16 *cb, complex16 *resultat);
                   3200: void f77multiplicationci_(complex16 *ca, integer8 *ib, complex16 *resultat);
                   3201: void f77multiplicationcr_(complex16 *ca, real8 *rb, complex16 *resultat);
                   3202: 
                   3203: void f77puissancecc_(complex16 *ca, complex16 *cb, complex16 *resultat);
                   3204: void f77puissanceci_(complex16 *ca, integer8 *ib, complex16 *resultat,
                   3205:        integer4 *troncature);
                   3206: void f77puissancecr_(complex16 *ca, real8 *rb, complex16 *resultat);
                   3207: void f77puissanceic_(integer8 *ia, complex16 *cb, complex16 *resultat);
                   3208: void f77puissanceii_(integer8 *ia, integer8 *ib, integer8 *resultat);
                   3209: void f77puissanceir_(integer8 *ia, real8 *rb, real8 *resultat);
                   3210: void f77puissancerc_(real8 *ra, complex16 *cb, complex16 *resultat);
                   3211: void f77puissanceri_(real8 *ra, integer8 *ib, real8 *resultat,
                   3212:        integer4 *troncature);
                   3213: void f77puissancerr_(real8 *ra, real8 *rb, real8 *resultat);
                   3214: 
                   3215: void f77racinecarreec_(complex16 *ca, complex16 *resultat);
                   3216: void f77racinecarreein_(integer8 *ia, complex16 *resultat);
                   3217: void f77racinecarreeip_(integer8 *ia, real8 *resultat);
                   3218: void f77racinecarreern_(real8 *ia, complex16 *resultat);
                   3219: void f77racinecarreerp_(real8 *ia, real8 *resultat);
                   3220: 
                   3221: void f77soustractioncc_(complex16 *ca, complex16 *cb, complex16 *resultat);
                   3222: void f77soustractionci_(complex16 *ca, integer8 *ib, complex16 *resultat);
                   3223: void f77soustractioncr_(complex16 *ca, real8 *rb, complex16 *resultat);
                   3224: void f77soustractionic_(integer8 *ib, complex16 *cb, complex16 *resultat);
                   3225: void f77soustractionrc_(real8 *ra, complex16 *cb, complex16 *resultat);
                   3226: 
                   3227: /*
                   3228: --------------------------------------------------------------------------------
                   3229:   Trigonométrie complexe
                   3230: --------------------------------------------------------------------------------
                   3231: */
                   3232: 
                   3233: void f77acos_(complex16 *argument, complex16 *resultat);
                   3234: void f77asin_(complex16 *argument, complex16 *resultat);
                   3235: void f77atan_(complex16 *argument, complex16 *resultat, integer4 *erreur);
                   3236: void f77cos_(complex16 *argument, complex16 *resultat);
                   3237: void f77sin_(complex16 *argument, complex16 *resultat);
                   3238: void f77tan_(complex16 *argument, complex16 *resultat, integer4 *erreur);
                   3239: 
                   3240: /*
                   3241: --------------------------------------------------------------------------------
                   3242:   Fonctions hyperboliques
                   3243: --------------------------------------------------------------------------------
                   3244: */
                   3245: 
                   3246: void f77acoshc_(complex16 *argument, complex16 *resultat);
                   3247: void f77alogc_(complex16 *argument, complex16 *resultat);
                   3248: void f77asinhc_(complex16 *argument, complex16 *resultat);
                   3249: void f77atanhc_(complex16 *argument, complex16 *resultat);
                   3250: void f77cosh_(complex16 *argument, complex16 *resultat);
                   3251: void f77expc_(complex16 *argument, complex16 *resultat);
                   3252: void f77lnc_(complex16 *argument, complex16 *resultat, integer4 *erreur);
                   3253: void f77lnin_(integer8 *argument, complex16 *resultat, integer4 *erreur);
                   3254: void f77lnrn_(real8 *argument, complex16 *resultat, integer4 *erreur);
                   3255: void f77logc_(complex16 *argument, complex16 *resultat, integer4 *erreur);
                   3256: void f77login_(integer8 *argument, complex16 *resultat, integer4 *erreur);
                   3257: void f77logrn_(real8 *argument, complex16 *resultat, integer4 *erreur);
                   3258: void f77sinh_(complex16 *argument, complex16 *resultat);
                   3259: void f77tanh_(complex16 *argument, complex16 *resultat, integer4 *erreur);
                   3260: void f77acoshi_(integer8 *argument, real8 *resultat);
                   3261: void f77acoshr_(real8 *argument, real8 *resultat);
                   3262: void f77asinhi_(integer8 *argument, real8 *resultat);
                   3263: void f77asinhr_(real8 *argument, real8 *resultat);
                   3264: void f77atanhi_(integer8 *argument, real8 *resultat);
                   3265: void f77atanhr_(real8 *argument, real8 *resultat);
                   3266: void f77lnip_(integer8 *argument, real8 *resultat, integer4 *erreur);
                   3267: void f77lnrp_(real8 *argument, real8 *resultat, integer4 *erreur);
                   3268: void f77logip_(integer8 *argument, real8 *resultat, integer4 *erreur);
                   3269: void f77logrp_(real8 *argument, real8 *resultat, integer4 *erreur);
                   3270: 
                   3271: /*
                   3272: --------------------------------------------------------------------------------
                   3273:   Calculs divers
                   3274: --------------------------------------------------------------------------------
                   3275: */
                   3276: 
                   3277: void f90arrangement(integer8 *n, integer8 *k, real8 *resultat);
                   3278: void f90combinaison(integer8 *n, integer8 *k, real8 *resultat);
                   3279: void f90fcd(real8 *x, integer8 *n1, integer8 *n2, real8 *resultat);
                   3280: void f90gausscd(real8 *x, real8 *moyenne, real8 *variance, real8 *resultat);
                   3281: void f90tcd(real8 *x, integer8 *n, real8 *resultat);
                   3282: void f90x2cd(real8 *x, integer8 *n, real8 *resultat);
                   3283: 
                   3284: // BEGIN C PROTOTYPES
                   3285: void dft(complex16 *dft, integer4 *nombre_lignes, integer4 *nombre_colonnes,
                   3286:        integer4 *inverse, integer4 *erreur);
                   3287: // END C PROTOTYPES
                   3288: 
                   3289: /*
                   3290: --------------------------------------------------------------------------------
                   3291:   Fonctions Lapack
                   3292: --------------------------------------------------------------------------------
                   3293: */
                   3294: 
                   3295:    /*
                   3296:     * Calcul de la longueur d'un espace de travail
                   3297:     */
                   3298: 
                   3299: #ifndef RPLARGS
                   3300: integer4 ilaenv_(integer4 *optimal, char *nom_fonction, char *option,
                   3301:        integer4 *n1, integer4 *n2, integer4 *n3, integer4 *n4,
                   3302:        integer4 longueur_nom_fonction, integer4 longueur_option);
                   3303: 
                   3304:    /*
                   3305:     * Inversion
                   3306:     */
                   3307: 
                   3308: void dgetri_(integer4 *ordre_a, real8 *a, integer4 *lda, integer4 *pivot,
                   3309:        real8 *work, integer4 *dim_work, integer4 *ios);
                   3310: void zgetri_(integer4 *ordre_a, complex16 *a, integer4 *lda, integer4 *pivot,
                   3311:        complex16 *work, integer4 *dim_work, integer4 *ios);
                   3312: 
                   3313:    /*
                   3314:     * Valeurs propres
                   3315:     */
                   3316: 
                   3317: void zgeev_(unsigned char *calcul_vp_gauches, unsigned char *calcul_vp_droits,
                   3318:        integer4 *dim_matrice1, complex16 *matrice_f77,
                   3319:        integer4 *dim_matrice2, complex16 *valeurs_propres,
                   3320:        complex16 *vpg_f77, integer4 *dim_matrice3,
                   3321:        complex16 *vpd_f77, integer4 *dim_matrice4,
                   3322:        complex16 *work, integer4 *lwork, real8 *rwork,
                   3323:        integer4 *erreur, integer4 longueur_1, integer4 longueur_2);
                   3324: 
                   3325:    /*
                   3326:     * Valeurs propres généralisées
                   3327:     */
                   3328: 
                   3329: void zggev_(unsigned char *calcul_vp_gauches, unsigned char *calcul_vp_droits,
                   3330:        integer4 *dim_matrice1, complex16 *matrice_f77,
                   3331:        integer4 *dim_matrice2, complex16 *metrique_f77,
                   3332:        integer4 *dim_matrice3, complex16 *alpha, complex16 *beta,
                   3333:        complex16 *vpg_f77, integer4 *dim_matrice4,
                   3334:        complex16 *vpd_f77, integer4 *dim_matrice5,
                   3335:        complex16 *work, integer4 *lwork, real8 *rwork,
                   3336:        integer4 *erreur, integer4 longueur_1, integer4 longueur_2);
                   3337: 
                   3338:    /*
                   3339:     * Moindres carrés
                   3340:     */
                   3341: 
                   3342: void dgelsd_(integer4 *nombre_lignes_a, integer4 *nombre_colonnes_a,
                   3343:        integer4 *nombre_colonnes_b, real8 *matrice_a, integer4 *lda,
                   3344:        real8 *matrice_b, integer4 *ldb, real8 *valeurs_singulieres,
                   3345:        real8 *rcond, integer4 *rank, real8 *work, integer4 *lwork,
                   3346:        integer4 *iwork, integer4 *info);
                   3347: void zgelsd_(integer4 *nombre_lignes_a, integer4 *nombre_colonnes_a,
                   3348:        integer4 *nombre_colonnes_b, complex16 *matrice_a, integer4 *lda,
                   3349:        complex16 *matrice_b, integer4 *ldb, real8 *valeurs_singulieres,
                   3350:        real8 *rcond, integer4 *rank, complex16 *work, integer4 *lwork,
                   3351:        real8 *rwork, integer4 *iwork, integer4 *info);
                   3352: 
                   3353:    /*
                   3354:     * Moindres carrés généralisé
                   3355:     */
                   3356: 
                   3357:    /*
                   3358:     * Décomposition en valeurs singulières
                   3359:     */
                   3360: 
                   3361: void dgesvd_(unsigned char *jobu, unsigned char *jobvh,
                   3362:        integer4 *m, integer4 *n, real8 *a, integer4 *lda,
                   3363:        real8 *s, real8 *u, integer4 *ldu, real8 *vh, integer4 *ldvh,
                   3364:        real8 *work, integer4 *lwork, integer4 *info, integer4 longueur_jobu,
                   3365:        integer4 longueur_jobvh);
                   3366: void zgesvd_(unsigned char *jobu, unsigned char *jobvh,
                   3367:        integer4 *m, integer4 *n, real8 *a, integer4 *lda,
                   3368:        real8 *s, real8 *u, integer4 *ldu, real8 *vh, integer4 *ldvh,
                   3369:        real8 *work, integer4 *lwork, real8 *rwork, integer4 *info,
                   3370:        integer4 longueur_jobu, integer4 longueur_jobvh);
                   3371: 
                   3372:    /*
                   3373:     * Factorisations diverses
                   3374:     */
                   3375: 
                   3376:        /* LU de Crout */
                   3377: void dgetrf_(integer4 *nb_lignes_a, integer4 *nb_colonnes_a, real8 *a,
                   3378:        integer4 *lda, integer4 *pivot, integer4 *ios);
                   3379: void zgetrf_(integer4 *nb_lignes_a, integer4 *nb_colonnes_a, complex16 *a,
                   3380:        integer4 *lda, integer4 *pivot, integer4 *ios);
                   3381: 
                   3382:        /* LQ */
                   3383: void dgelq2_(integer4 *nb_lignes_a, integer4 *nb_colonnes_a, real8 *a,
                   3384:        integer4 *lda, real8 *tau, real8 *work, integer4 *ios);
                   3385: void zgelq2_(integer4 *nb_lignes_a, integer4 *nb_colonnes_a, complex16 *a,
                   3386:        integer4 *lda, complex16 *tau, complex16 *work, integer4 *ios);
                   3387: 
                   3388:        /* QR */
                   3389: void dgeqp3_(integer4 *nb_lignes_a, integer4 *nb_colonnes_a, real8 *a,
                   3390:        integer4 *lda, integer4 *pivot, real8 *tau, real8 *work,
                   3391:        integer4 *lwork, integer4 *ios);
                   3392: void zgeqp3_(integer4 *nb_lignes_a, integer4 *nb_colonnes_a, complex16 *a,
                   3393:        integer4 *lda, integer4 *pivot, complex16 *tau, complex16 *work,
                   3394:        integer4 *lwork, real8 *rwork, integer4 *ios);
                   3395: 
                   3396:        /* Cholesky */
                   3397: void dpptrf_(unsigned char *mode, integer4 *n, complex16 *triangle,
                   3398:        integer4 *ios, integer4 longueur);
                   3399: void zpptrf_(unsigned char *mode, integer4 *n, complex16 *triangle,
                   3400:        integer4 *ios, integer4 longueur);
                   3401: 
                   3402:        /* Schur */
                   3403: void dgees_(unsigned char *calcul_vecteur, unsigned char *valeurs_triees,
                   3404:        logical4 (*fonction_tri)(), integer4 *n, real8 *a,
                   3405:        integer4 *lda, integer4 *sdim, real8 *wr, real8 *wi,
                   3406:        real8 *vs, integer4 *ldvs, real8 *work, integer4 *lwork,
                   3407:        logical4 *bwork, integer4 *info, integer4 l1, integer4 l2);
                   3408: void zgees_(unsigned char *calcul_vecteur, unsigned char *valeurs_triees,
                   3409:        logical4 (*fonction_tri)(), integer4 *n, complex16 *a,
                   3410:        integer4 *lda, integer4 *sdim, complex16 *w,
                   3411:        complex16 *vs, integer4 *ldvs, complex16 *work, integer4 *lwork,
                   3412:        real8 *rwork, logical4 *bwork, integer4 *info,
                   3413:        integer4 l1, integer4 l2);
                   3414: 
                   3415:        /* Déterminant et rang */
                   3416: void dgecon_(unsigned char *norm, integer4 *n, real8 *a, integer4 *lda,
                   3417:        real8 *anorm, real8 *rcond, real8 *work, integer4 *iwork,
                   3418:        integer4 *info, integer4 l1);
                   3419: void dgelsy_(integer4 *m, integer4 *n, integer4 *nrhs, real8 *a,
                   3420:        integer4 *lda, real8 *b, integer4 *ldb, integer4 *jpvt, real8 *rcond,
                   3421:        integer4 *rank, real8 *work, integer4 *lwork, integer4 *info);
                   3422: real8 dlange_(unsigned char *norme, integer4 *n, integer4 *m, real8 *a,
                   3423:        integer4 *lda, real8 *work, integer4 longueur);
                   3424: real8 zlange_(unsigned char *norme, integer4 *n, integer4 *m, real8 *a,
                   3425:        integer4 *lda, real8 *work, integer4 longueur);
                   3426: void zgecon_(unsigned char *norm, integer4 *n, complex16 *a, integer4 *lda,
                   3427:        real8 *anorm, real8 *rcond, complex16 *work, real8 *rwork,
                   3428:        integer4 *info, integer4 l1);
                   3429: void zgelsy_(integer4 *m, integer4 *n, integer4 *nrhs, complex16 *a,
                   3430:        integer4 *lda, complex16 *b, integer4 *ldb, integer4 *jpvt,
                   3431:        real8 *rcond, integer4 *rank, complex16 *work, integer4 *lwork,
                   3432:        real8 *rwork, integer4 *info);
                   3433: #endif
                   3434: 
                   3435: /*
                   3436:  * Fonction testant la requête d'arrêt (nécessaire pour tester le
                   3437:  * drapeau depuis une bibliothèque).
                   3438:  */
                   3439: 
1.34      bertrand 3440: int test_arret(struct_processus *s_etat_processus);
1.1       bertrand 3441: 
                   3442: #endif
                   3443: 
                   3444: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>