postgresql/src/backend/utils/error/assert.c

50 lines
1.1 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* assert.c
* Assert code.
*
2002-06-20 16:29:54 -04:00
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
2002-09-04 16:31:48 -04:00
* $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.23 2002/09/04 20:31:30 momjian Exp $
*
* NOTE
* This should eventually work with elog()
*
*-------------------------------------------------------------------------
*/
1999-07-15 23:14:30 -04:00
#include "postgres.h"
#include <unistd.h>
/*
* ExceptionalCondition - Handles the failure of an Assert()
*/
int
ExceptionalCondition(char *conditionName,
char *errorType,
char *fileName,
int lineNumber)
{
if (!PointerIsValid(conditionName)
|| !PointerIsValid(fileName)
|| !PointerIsValid(errorType))
fprintf(stderr, "TRAP: ExceptionalCondition: bad arguments\n");
else
{
fprintf(stderr, "TRAP: %s(\"%s\", File: \"%s\", Line: %d)\n",
errorType, conditionName,
fileName, lineNumber);
}
1998-06-18 12:35:38 -04:00
#ifdef SLEEP_ON_ASSERT
sleep(1000000);
#endif
abort();
1998-08-31 23:29:17 -04:00
return 0;
}