mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
32 lines
674 B
C
32 lines
674 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* excabort.c--
|
|
* Default exception abort code.
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* IDENTIFICATION
|
|
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.4 1997/09/08 21:49:03 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
|
|
#include "utils/exc.h" /* where function declarations go */
|
|
|
|
void
|
|
ExcAbort(const Exception *excP,
|
|
ExcDetail detail,
|
|
ExcData data,
|
|
ExcMessage message)
|
|
{
|
|
#ifdef __SABER__
|
|
saber_stop();
|
|
#else
|
|
/* dump core */
|
|
abort();
|
|
#endif
|
|
}
|