stk/Tcl/panic.c

107 lines
2.5 KiB
C
Raw Normal View History

1996-09-27 06:29:02 -04:00
/*
* panic.c --
*
* Source code for the "panic" library procedure for Tcl;
* individual applications will probably override this with
* an application-specific panic procedure.
*
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
1998-04-10 06:59:06 -04:00
* SCCS: @(#) panic.c 1.15 96/09/12 14:55:25
1996-09-27 06:29:02 -04:00
*/
#include <stdio.h>
#ifdef NO_STDLIB_H
1999-09-05 07:16:41 -04:00
# ifdef SCM_CODE
1998-04-10 06:59:06 -04:00
# include "compat/stdlib.h"
# else
# include "../compat/stdlib.h"
# endif
1996-09-27 06:29:02 -04:00
#else
# include <stdlib.h>
#endif
1998-04-10 06:59:06 -04:00
#define panic panicDummy
1996-09-27 06:29:02 -04:00
#include "tcl.h"
1998-04-10 06:59:06 -04:00
#undef panic
1998-09-30 07:11:02 -04:00
# undef TCL_STORAGE_CLASS
# define TCL_STORAGE_CLASS DLLEXPORT
# undef TCL_STORAGE_CLASS
# define TCL_STORAGE_CLASS DLLEXPORT
1998-04-10 06:59:06 -04:00
EXTERN void panic _ANSI_ARGS_((char *format, char *arg1,
char *arg2, char *arg3, char *arg4, char *arg5,
char *arg6, char *arg7, char *arg8));
1996-09-27 06:29:02 -04:00
/*
* The panicProc variable contains a pointer to an application
* specific panic procedure.
*/
void (*panicProc) _ANSI_ARGS_(TCL_VARARGS(char *,format)) = NULL;
/*
*----------------------------------------------------------------------
*
* Tcl_SetPanicProc --
*
* Replace the default panic behavior with the specified functiion.
*
* Results:
* None.
*
* Side effects:
* Sets the panicProc variable.
*
*----------------------------------------------------------------------
*/
void
Tcl_SetPanicProc(proc)
void (*proc) _ANSI_ARGS_(TCL_VARARGS(char *,format));
{
panicProc = proc;
}
/*
*----------------------------------------------------------------------
*
* panic --
*
* Print an error message and kill the process.
*
* Results:
* None.
*
* Side effects:
* The process dies, entering the debugger if possible.
*
*----------------------------------------------------------------------
*/
/* VARARGS ARGSUSED */
void
panic(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
char *format; /* Format string, suitable for passing to
* fprintf. */
char *arg1, *arg2, *arg3; /* Additional arguments (variable in number)
* to pass to fprintf. */
char *arg4, *arg5, *arg6, *arg7, *arg8;
{
if (panicProc != NULL) {
(void) (*panicProc)(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
} else {
(void) fprintf(stderr, format, arg1, arg2, arg3, arg4, arg5, arg6,
arg7, arg8);
(void) fprintf(stderr, "\n");
(void) fflush(stderr);
abort();
}
}