* genlib/src/util_Defs.h,

genlib/src/util_Sys.c :
   - Suppression de "ssignal()" & "gsignal()" pour faire plaisir aux
       naufrages de BSD. Juste pour faire de la polemique, ces fonctions
       sont bien standart... sous Unix S V R 4. Mais c'est du vice parce
       qu'en fait je ne m'en servais pas :-))
This commit is contained in:
Jean-Paul Chaput 2002-09-16 12:52:04 +00:00
parent a851143d14
commit ce33464465
2 changed files with 11 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: util_Defs.h,v 1.2 2002/05/11 17:03:36 xtof Exp $
* $Id: util_Defs.h,v 1.3 2002/09/16 12:52:04 jpc Exp $
*
* /----------------------------------------------------------------\
* | |
@ -119,7 +119,7 @@
/* Interruptions handling functions. */
extern void trapInit __FP((void));
extern void sendGSignal __FP((int aSig));
/*extern void sendGSignal __FP((int aSig));*/
extern void setBinName __FP((char *asName));
/* Errors printing functions. */

View File

@ -1,5 +1,5 @@
/*
* $Id: util_Sys.c,v 1.1 2002/04/29 13:40:55 jpc Exp $
* $Id: util_Sys.c,v 1.2 2002/09/16 12:52:04 jpc Exp $
*
* /----------------------------------------------------------------\
* | |
@ -120,7 +120,7 @@ static void trapSig(aSig)
extern void trapInit()
{
/* Set the trap function for the ERROR signal. */
if (ssignal (C_SIGERR, trapSig) == SIG_ERR) { trapSig (C_SIGTFLT); }
/* if (ssignal (C_SIGERR, trapSig) == SIG_ERR) { trapSig (C_SIGTFLT); } */
/* Set the trap function for SIGTERM signal. */
if (signal(SIGTERM, trapSig) == SIG_ERR) { trapSig (C_SIGTFLT); }
@ -136,11 +136,13 @@ extern void trapInit()
* Function : "sendGSignal()".
*/
extern void sendGSignal(aSig)
int aSig;
{
gsignal (aSig);
}
/*
* extern void sendGSignal(aSig)
* int aSig;
* {
* gsignal (aSig);
* }
*/
/* ------------------------------------------------------------------