version 1.1, 2010/01/26 15:22:45
|
version 1.61, 2017/06/28 09:20:35
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.0.9 |
RPL/2 (R) version 4.1.27 |
Copyright (C) 1989-2010 Dr. BERTRAND Joël |
Copyright (C) 1989-2017 Dr. BERTRAND Joël |
|
|
This file is part of RPL/2. |
This file is part of RPL/2. |
|
|
Line 20
|
Line 20
|
*/ |
*/ |
|
|
|
|
#include "rpl.conv.h" |
#include "rpl-conv.h" |
|
|
|
|
/* |
/* |
Line 50 instruction_obsub(struct_processus *s_et
|
Line 50 instruction_obsub(struct_processus *s_et
|
unsigned char *registre_definitions_chainees; |
unsigned char *registre_definitions_chainees; |
unsigned char *registre_instruction_courante; |
unsigned char *registre_instruction_courante; |
|
|
unsigned long position_courante; |
integer8 position_courante; |
|
|
(*s_etat_processus).erreur_execution = d_ex; |
(*s_etat_processus).erreur_execution = d_ex; |
|
|
Line 88 instruction_obsub(struct_processus *s_et
|
Line 88 instruction_obsub(struct_processus *s_et
|
} |
} |
else if ((*s_etat_processus).test_instruction == 'Y') |
else if ((*s_etat_processus).test_instruction == 'Y') |
{ |
{ |
(*s_etat_processus).nombre_arguments = 3; |
(*s_etat_processus).nombre_arguments = -1; |
return; |
return; |
} |
} |
|
|
Line 301 instruction_obget(struct_processus *s_et
|
Line 301 instruction_obget(struct_processus *s_et
|
struct_objet *s_objet_argument_2; |
struct_objet *s_objet_argument_2; |
struct_objet *s_objet_resultat; |
struct_objet *s_objet_resultat; |
|
|
unsigned long position; |
integer8 position; |
|
|
(*s_etat_processus).erreur_execution = d_ex; |
(*s_etat_processus).erreur_execution = d_ex; |
|
|
Line 326 instruction_obget(struct_processus *s_et
|
Line 326 instruction_obget(struct_processus *s_et
|
} |
} |
else if ((*s_etat_processus).test_instruction == 'Y') |
else if ((*s_etat_processus).test_instruction == 'Y') |
{ |
{ |
(*s_etat_processus).nombre_arguments = 2; |
(*s_etat_processus).nombre_arguments = -1; |
return; |
return; |
} |
} |
|
|
Line 371 instruction_obget(struct_processus *s_et
|
Line 371 instruction_obget(struct_processus *s_et
|
|
|
while(l_element_courant != NULL) |
while(l_element_courant != NULL) |
{ |
{ |
if (position == (unsigned long) (*((integer8 *) |
if (position == (*((integer8 *) (*s_objet_argument_1).objet))) |
(*s_objet_argument_1).objet))) |
|
{ |
{ |
/* |
/* |
* Récupération de l'objet |
* Récupération de l'objet |