mirror of
https://github.com/postgres/postgres.git
synced 2025-11-10 17:42:29 +03:00
Used modified version of indent that understands over 100 typedefs.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.6 1997/09/08 02:31:25 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.7 1997/09/08 21:48:58 momjian Exp $
|
||||
*
|
||||
* NOTE
|
||||
* This should eventually work with elog(), dlog(), etc.
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
int
|
||||
ExceptionalCondition(char *conditionName,
|
||||
Exception * exceptionP,
|
||||
Exception *exceptionP,
|
||||
char *detail,
|
||||
char *fileName,
|
||||
int lineNumber)
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.17 1997/09/08 02:31:29 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.18 1997/09/08 21:49:00 momjian Exp $
|
||||
*
|
||||
* NOTE
|
||||
* XXX this code needs improvement--check for state violations and
|
||||
@@ -25,10 +25,10 @@
|
||||
#include "storage/ipc.h"
|
||||
|
||||
static void
|
||||
ExcUnCaught(Exception * excP, ExcDetail detail, ExcData data,
|
||||
ExcUnCaught(Exception *excP, ExcDetail detail, ExcData data,
|
||||
ExcMessage message);
|
||||
static void
|
||||
ExcPrint(Exception * excP, ExcDetail detail, ExcData data,
|
||||
ExcPrint(Exception *excP, ExcDetail detail, ExcData data,
|
||||
ExcMessage message);
|
||||
|
||||
/*
|
||||
@@ -98,7 +98,7 @@ EnableExceptionHandling(bool on)
|
||||
}
|
||||
|
||||
static void
|
||||
ExcPrint(Exception * excP,
|
||||
ExcPrint(Exception *excP,
|
||||
ExcDetail detail,
|
||||
ExcData data,
|
||||
ExcMessage message)
|
||||
@@ -151,7 +151,7 @@ ExcGetUnCaught(void)
|
||||
|
||||
#ifdef NOT_USED
|
||||
ExcProc *
|
||||
ExcSetUnCaught(ExcProc * newP)
|
||||
ExcSetUnCaught(ExcProc *newP)
|
||||
{
|
||||
ExcProc *oldP = ExcUnCaughtP;
|
||||
|
||||
@@ -163,7 +163,7 @@ ExcSetUnCaught(ExcProc * newP)
|
||||
#endif
|
||||
|
||||
static void
|
||||
ExcUnCaught(Exception * excP,
|
||||
ExcUnCaught(Exception *excP,
|
||||
ExcDetail detail,
|
||||
ExcData data,
|
||||
ExcMessage message)
|
||||
@@ -174,7 +174,7 @@ ExcUnCaught(Exception * excP,
|
||||
}
|
||||
|
||||
void
|
||||
ExcRaise(Exception * excP,
|
||||
ExcRaise(Exception *excP,
|
||||
ExcDetail detail,
|
||||
ExcData data,
|
||||
ExcMessage message)
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.3 1997/09/07 04:53:18 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.4 1997/09/08 21:49:03 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -17,7 +17,7 @@
|
||||
#include "utils/exc.h" /* where function declarations go */
|
||||
|
||||
void
|
||||
ExcAbort(const Exception * excP,
|
||||
ExcAbort(const Exception *excP,
|
||||
ExcDetail detail,
|
||||
ExcData data,
|
||||
ExcMessage message)
|
||||
|
||||
Reference in New Issue
Block a user