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

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

CVSweb interface <joel.bertrand@systella.fr>