Diff for /rpl/src/rpl.h between versions 1.260 and 1.265

version 1.260, 2015/01/28 11:45:44 version 1.265, 2015/02/19 11:01:29
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.20    RPL/2 (R) version 4.1.21
   Copyright (C) 1989-2015 Dr. BERTRAND Joël    Copyright (C) 1989-2015 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
Line 2357  typedef struct processus Line 2357  typedef struct processus
     struct timeval              horodatage_profilage;      struct timeval              horodatage_profilage;
   
     pthread_mutex_t             mutex_allocation;      pthread_mutex_t             mutex_allocation;
       pthread_mutex_t             mutex_allocation_buffer;
     pthread_mutex_t             mutex_interruptions;      pthread_mutex_t             mutex_interruptions;
     pthread_mutex_t             mutex_pile_processus;      pthread_mutex_t             mutex_pile_processus;
     pthread_mutex_t             mutex_signaux;      pthread_mutex_t             mutex_signaux;
Line 2391  typedef struct processus Line 2392  typedef struct processus
     integer8                    taille_pile_objets;      integer8                    taille_pile_objets;
     struct_objet                *pile_objets;      struct_objet                *pile_objets;
   
 #   define TAILLE_CACHE 1024  #   define TAILLE_CACHE         1024
 #   define CACHE(type, nom) \  #   define CACHE(type, nom) \
     type                        *objets_##nom[TAILLE_CACHE]; \      type                        *objets_##nom[TAILLE_CACHE]; \
     int                         pointeur_##nom;      volatile int                pointeur_##nom;
   
 #   define CACHE2(type, nom) \  #   define CACHE2(type, nom) \
     type                        *nom[TAILLE_CACHE]; \      type                        *nom[TAILLE_CACHE]; \
     int                         pointeur_##nom;      volatile int                pointeur_##nom;
   
     CACHE(integer8, adr)      CACHE(integer8, adr)
     CACHE(logical8, bin)      CACHE(logical8, bin)

Removed from v.1.260  
changed lines
  Added in v.1.265


CVSweb interface <joel.bertrand@systella.fr>