]> granicus.if.org Git - postgresql/blob - src/backend/utils/error/excabort.c
Preliminary code cleanup in elog(). Split out some code into utility
[postgresql] / src / backend / utils / error / excabort.c
1 /*-------------------------------------------------------------------------
2  *
3  * excabort.c
4  *        Default exception abort code.
5  *
6  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  *        $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.9 2001/01/24 19:43:15 momjian Exp $
12  *
13  *-------------------------------------------------------------------------
14  */
15
16 #include "postgres.h"
17
18 #include "utils/exc.h"
19
20 void
21 ExcAbort(const Exception *excP,
22                  ExcDetail detail,
23                  ExcData data,
24                  ExcMessage message)
25 {
26         /* dump core */
27         abort();
28 }