File:  [local] / rpl / src / rpl.h
Revision 1.301: download - view: text, annotated - select for diffs - revision graph
Tue Oct 11 11:30:30 2016 UTC (7 years, 6 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Patches pour Cygwin 64 bits (retrait de sigsegv).

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

CVSweb interface <joel.bertrand@systella.fr>