version 1.183, 2016/03/22 17:12:14
|
version 1.195, 2017/07/04 10:28:08
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.1.25 |
RPL/2 (R) version 4.1.27 |
Copyright (C) 1989-2016 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 86 rplinit(int argc, char *argv[], char *en
|
Line 86 rplinit(int argc, char *argv[], char *en
|
|
|
struct_processus *s_etat_processus; |
struct_processus *s_etat_processus; |
|
|
|
struct_liste_chainee *l_bibliotheques; |
|
struct_liste_chainee *l_bibliotheque_courante; |
|
struct_liste_chainee *l_nouvelle_bibliotheque; |
|
|
struct_liste_variables_partagees *l_element_partage_courant; |
struct_liste_variables_partagees *l_element_partage_courant; |
struct_liste_variables_partagees *l_element_partage_suivant; |
struct_liste_variables_partagees *l_element_partage_suivant; |
|
|
Line 125 rplinit(int argc, char *argv[], char *en
|
Line 129 rplinit(int argc, char *argv[], char *en
|
routine_recursive = 0; |
routine_recursive = 0; |
nombre_thread_surveillance_processus = 0; |
nombre_thread_surveillance_processus = 0; |
pid_processus_pere = getpid(); |
pid_processus_pere = getpid(); |
|
affichage_rplso = d_vrai; |
|
|
|
# ifdef DEBUG_PROC |
|
__proc = 0; |
|
# endif |
|
|
# ifdef DEBUG_MEMOIRE |
# ifdef DEBUG_MEMOIRE |
debug_memoire_initialisation(); |
debug_memoire_initialisation(); |
Line 441 rplinit(int argc, char *argv[], char *en
|
Line 450 rplinit(int argc, char *argv[], char *en
|
|
|
if ((*s_etat_processus).langue == 'F') |
if ((*s_etat_processus).langue == 'F') |
{ |
{ |
printf("+++Copyright (C) 1989 à 2015, 2016 BERTRAND Joël\n"); |
printf("+++Copyright (C) 1989 à 2016, 2017 BERTRAND Joël\n"); |
} |
} |
else |
else |
{ |
{ |
printf("+++Copyright (C) 1989 to 2015, 2016 BERTRAND Joel\n"); |
printf("+++Copyright (C) 1989 to 2016, 2017 BERTRAND Joel\n"); |
} |
} |
} |
} |
|
|
Line 672 rplinit(int argc, char *argv[], char *en
|
Line 681 rplinit(int argc, char *argv[], char *en
|
return(EXIT_FAILURE); |
return(EXIT_FAILURE); |
} |
} |
|
|
if (sigaction(SIGALRM, &action, NULL) != 0) |
if (sigaction(SIGUSR2, &action, NULL) != 0) |
{ |
{ |
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
sem_post(&((*s_etat_processus).semaphore_fork)); |
sem_post(&((*s_etat_processus).semaphore_fork)); |
Line 706 rplinit(int argc, char *argv[], char *en
|
Line 715 rplinit(int argc, char *argv[], char *en
|
} |
} |
|
|
signal_test = SIGTEST; |
signal_test = SIGTEST; |
raise(SIGALRM); |
raise(SIGUSR2); |
|
|
attente.tv_sec = 0; |
attente.tv_sec = 0; |
attente.tv_nsec = 1000000; |
attente.tv_nsec = 1000000; |
Line 716 rplinit(int argc, char *argv[], char *en
|
Line 725 rplinit(int argc, char *argv[], char *en
|
nanosleep(&attente, NULL); |
nanosleep(&attente, NULL); |
} |
} |
|
|
if (signal_test != SIGALRM) |
if (signal_test != SIGUSR2) |
{ |
{ |
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
sem_post(&((*s_etat_processus).semaphore_fork)); |
sem_post(&((*s_etat_processus).semaphore_fork)); |
Line 1000 rplinit(int argc, char *argv[], char *en
|
Line 1009 rplinit(int argc, char *argv[], char *en
|
drapeau_encart = 'Y'; |
drapeau_encart = 'Y'; |
debug = d_faux; |
debug = d_faux; |
arguments = NULL; |
arguments = NULL; |
|
l_bibliotheques = NULL; |
|
|
(*s_etat_processus).s_fichiers = NULL; |
(*s_etat_processus).s_fichiers = NULL; |
(*s_etat_processus).s_sockets = NULL; |
(*s_etat_processus).s_sockets = NULL; |
Line 1590 rplinit(int argc, char *argv[], char *en
|
Line 1600 rplinit(int argc, char *argv[], char *en
|
break; |
break; |
} |
} |
|
|
|
case 'm' : |
|
{ |
|
while(*(++argv[0]) == ' '); |
|
argv[0]--; |
|
|
|
if ((*(++argv[0])) != '\0') |
|
{ |
|
if ((l_nouvelle_bibliotheque = malloc( |
|
sizeof(struct_liste_chainee))) == NULL) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
(*l_nouvelle_bibliotheque).suivant = |
|
l_bibliotheques; |
|
|
|
if (((*l_nouvelle_bibliotheque).donnee = |
|
allocation(s_etat_processus, CHN)) |
|
== NULL) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
if (((*(*l_nouvelle_bibliotheque).donnee) |
|
.objet = malloc((strlen(argv[0]) + 1) * |
|
sizeof(unsigned char))) == NULL) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
strcpy((*(*l_nouvelle_bibliotheque).donnee) |
|
.objet, argv[0]); |
|
argv[0] += strlen((unsigned char *) |
|
(*(*l_nouvelle_bibliotheque).donnee) |
|
.objet) - 1; |
|
|
|
l_bibliotheques = l_nouvelle_bibliotheque; |
|
} |
|
else if ((--argc) > 0) |
|
{ |
|
argv++; |
|
|
|
if ((l_nouvelle_bibliotheque = malloc( |
|
sizeof(struct_liste_chainee))) == NULL) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
(*l_nouvelle_bibliotheque).suivant = |
|
l_bibliotheques; |
|
|
|
if (((*l_nouvelle_bibliotheque).donnee = |
|
allocation(s_etat_processus, CHN)) |
|
== NULL) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
if (((*(*l_nouvelle_bibliotheque).donnee) |
|
.objet = malloc((strlen(argv[0]) + 1) * |
|
sizeof(unsigned char))) == NULL) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
strcpy((*(*l_nouvelle_bibliotheque).donnee) |
|
.objet, argv[0]); |
|
argv[0] += strlen((unsigned char *) |
|
(*(*l_nouvelle_bibliotheque).donnee) |
|
.objet) - 1; |
|
|
|
l_bibliotheques = l_nouvelle_bibliotheque; |
|
} |
|
else |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus).semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus).semaphore_fork); |
|
sem_destroy3((*s_etat_processus).semaphore_fork, |
|
getpid(), pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Erreur : Aucune bibliothèque " |
|
"spécifiée après l'option -A\n"); |
|
} |
|
else |
|
{ |
|
printf("+++Error : Library required after " |
|
"-m option\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
break; |
|
} |
|
|
case 'n' : |
case 'n' : |
{ |
{ |
if (option_n == d_vrai) |
if (option_n == d_vrai) |
Line 3761 rplinit(int argc, char *argv[], char *en
|
Line 4066 rplinit(int argc, char *argv[], char *en
|
} |
} |
} |
} |
|
|
|
/* |
|
* Chargement des bibliothèques pour gérer des |
|
* types externes lors des l'analyse syntaxique et |
|
* compilation. |
|
*/ |
|
|
|
l_bibliotheque_courante = l_bibliotheques; |
|
|
|
while(l_bibliotheque_courante != NULL) |
|
{ |
|
if (empilement(s_etat_processus, &((*s_etat_processus) |
|
.l_base_pile), (*l_bibliotheque_courante) |
|
.donnee) == d_erreur) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus).semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus).semaphore_fork); |
|
sem_destroy3((*s_etat_processus).semaphore_fork, |
|
getpid(), pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
# ifdef HAVE_SIGSEGV_RECOVERY |
|
if (debug == d_faux) |
|
{ |
|
sigsegv_deinstall_handler(); |
|
} |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Fatal :" |
|
" Chargement de la bibliothèse %s" |
|
" impossible\n", (unsigned char *) |
|
(*(*l_bibliotheque_courante).donnee) |
|
.objet); |
|
} |
|
else |
|
{ |
|
printf("+++Fatal : Cannot load library %s\n", |
|
(*(*l_bibliotheque_courante).donnee) |
|
.objet); |
|
} |
|
|
|
if (traitement_fichier_temporaire == 'Y') |
|
{ |
|
if (destruction_fichier( |
|
nom_fichier_temporaire) |
|
== d_erreur) |
|
{ |
|
return(EXIT_FAILURE); |
|
} |
|
|
|
free(nom_fichier_temporaire); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
affichage_rplso = d_faux; |
|
instruction_use(s_etat_processus); |
|
affichage_rplso = d_vrai; |
|
|
|
if (depilement(s_etat_processus, &((*s_etat_processus) |
|
.l_base_pile), &((*l_bibliotheque_courante) |
|
.donnee)) == d_erreur) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus).semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus).semaphore_fork); |
|
sem_destroy3((*s_etat_processus).semaphore_fork, |
|
getpid(), pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas(s_etat_processus); |
|
destruction_queue_signaux(s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
# ifdef HAVE_SIGSEGV_RECOVERY |
|
if (debug == d_faux) |
|
{ |
|
sigsegv_deinstall_handler(); |
|
} |
|
# endif |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Fatal :" |
|
" Chargement de la bibliothèse %s" |
|
" impossible\n", (unsigned char *) |
|
(*(*l_bibliotheque_courante).donnee) |
|
.objet); |
|
} |
|
else |
|
{ |
|
printf("+++Fatal : Cannot load library %s\n", |
|
(*(*l_bibliotheque_courante).donnee) |
|
.objet); |
|
} |
|
|
|
if (traitement_fichier_temporaire == 'Y') |
|
{ |
|
if (destruction_fichier( |
|
nom_fichier_temporaire) |
|
== d_erreur) |
|
{ |
|
return(EXIT_FAILURE); |
|
} |
|
|
|
free(nom_fichier_temporaire); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
l_bibliotheque_courante = |
|
(*l_bibliotheque_courante).suivant; |
|
} |
|
|
if ((erreur = compilation(s_etat_processus)) != |
if ((erreur = compilation(s_etat_processus)) != |
d_absence_erreur) |
d_absence_erreur) |
{ |
{ |
Line 4646 rplinit(int argc, char *argv[], char *en
|
Line 5085 rplinit(int argc, char *argv[], char *en
|
{ |
{ |
if (setjmp(contexte_initial) == 0) |
if (setjmp(contexte_initial) == 0) |
{ |
{ |
|
// Libération des bibliothèques |
|
|
|
l_bibliotheque_courante = l_bibliotheques; |
|
|
|
while(l_bibliotheque_courante != NULL) |
|
{ |
|
if (empilement(s_etat_processus, |
|
&((*s_etat_processus).l_base_pile), |
|
(*l_bibliotheque_courante).donnee) |
|
== d_erreur) |
|
{ |
|
# ifndef SEMAPHORES_NOMMES |
|
sem_post(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
sem_destroy(&((*s_etat_processus) |
|
.semaphore_fork)); |
|
# else |
|
sem_post((*s_etat_processus) |
|
.semaphore_fork); |
|
sem_destroy3((*s_etat_processus) |
|
.semaphore_fork, getpid(), |
|
pthread_self(), SEM_FORK); |
|
# endif |
|
|
|
liberation_contexte_cas( |
|
s_etat_processus); |
|
destruction_queue_signaux( |
|
s_etat_processus); |
|
|
|
# ifdef HAVE_STACK_OVERFLOW_RECOVERY |
|
stackoverflow_deinstall_handler(); |
|
# endif |
|
|
|
# ifdef HAVE_SIGSEGV_RECOVERY |
|
if (debug == d_faux) |
|
{ |
|
sigsegv_deinstall_handler(); |
|
} |
|
# endif |
|
|
|
erreur = d_es_allocation_memoire; |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
printf("+++Système : Mémoire " |
|
"insuffisante\n"); |
|
} |
|
else |
|
{ |
|
printf("+++System : Not enough " |
|
"memory\n"); |
|
} |
|
|
|
return(EXIT_FAILURE); |
|
} |
|
|
|
affichage_rplso = d_faux; |
|
instruction_remove(s_etat_processus); |
|
affichage_rplso = d_vrai; |
|
|
|
l_nouvelle_bibliotheque = |
|
(*l_bibliotheque_courante).suivant; |
|
free(l_bibliotheque_courante); |
|
l_bibliotheque_courante = |
|
l_nouvelle_bibliotheque; |
|
} |
|
|
erreur = sequenceur(s_etat_processus); |
erreur = sequenceur(s_etat_processus); |
|
|
if (erreur == d_absence_erreur) |
if (erreur == d_absence_erreur) |
Line 4747 rplinit(int argc, char *argv[], char *en
|
Line 5253 rplinit(int argc, char *argv[], char *en
|
{ |
{ |
if (setjmp(contexte_initial) == 0) |
if (setjmp(contexte_initial) == 0) |
{ |
{ |
erreur = sequenceur_optimise(s_etat_processus); |
erreur = sequenceur_optimise(s_etat_processus, |
|
l_bibliotheques); |
|
|
if (erreur == d_absence_erreur) |
if (erreur == d_absence_erreur) |
{ |
{ |
Line 5697 rplinit(int argc, char *argv[], char *en
|
Line 6204 rplinit(int argc, char *argv[], char *en
|
|
|
retrait_thread(s_etat_processus); |
retrait_thread(s_etat_processus); |
|
|
|
attente.tv_sec = 0; |
|
attente.tv_nsec = GRANULARITE_us * 1000; |
|
|
|
while(nombre_thread_surveillance_processus != 0) |
|
{ |
|
nanosleep(&attente, NULL); |
|
INCR_GRANULARITE(attente.tv_nsec); |
|
} |
|
|
pthread_mutex_destroy(&((*s_etat_processus).mutex_pile_processus)); |
pthread_mutex_destroy(&((*s_etat_processus).mutex_pile_processus)); |
pthread_mutex_destroy(&((*s_etat_processus).mutex_allocation)); |
pthread_mutex_destroy(&((*s_etat_processus).mutex_allocation)); |
pthread_mutex_destroy(&((*s_etat_processus).mutex_interruptions)); |
pthread_mutex_destroy(&((*s_etat_processus).mutex_interruptions)); |
Line 5775 informations(struct_processus *s_etat_pr
|
Line 6291 informations(struct_processus *s_etat_pr
|
printf(" -i : fonctionnement interactif\n"); |
printf(" -i : fonctionnement interactif\n"); |
printf(" -l : licence d'utilisation\n"); |
printf(" -l : licence d'utilisation\n"); |
printf(" -n : ignorance du signal HUP\n"); |
printf(" -n : ignorance du signal HUP\n"); |
|
printf(" -m : chargement d'un module RPL/SO avant la " |
|
"compilation\n"); |
printf(" -p : précompilation du script avant exécution\n"); |
printf(" -p : précompilation du script avant exécution\n"); |
printf(" -P : profilage (-P ou -PP)\n"); |
printf(" -P : profilage (-P ou -PP)\n"); |
printf(" -s : empêchement de l'ouverture de l'écran initial\n"); |
printf(" -s : empêchement de l'ouverture de l'écran initial\n"); |
Line 5796 informations(struct_processus *s_etat_pr
|
Line 6314 informations(struct_processus *s_etat_pr
|
printf(" -i : runs the RPL/2 sequencer in interactive mode\n"); |
printf(" -i : runs the RPL/2 sequencer in interactive mode\n"); |
printf(" -l : prints the user licence of the software\n"); |
printf(" -l : prints the user licence of the software\n"); |
printf(" -n : ignores HUP signal\n"); |
printf(" -n : ignores HUP signal\n"); |
|
printf(" -m : loads RPL/SO object before compilation\n"); |
printf(" -p : precompiles script\n"); |
printf(" -p : precompiles script\n"); |
printf(" -P : computes profile data (-P or -PP)\n"); |
printf(" -P : computes profile data (-P or -PP)\n"); |
printf(" -s : disables splash screen\n"); |
printf(" -s : disables splash screen\n"); |