Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "postgres.h"
00019
00020 #include <unistd.h>
00021
00022
00023
00024
00025 void
00026 ExceptionalCondition(const char *conditionName,
00027 const char *errorType,
00028 const char *fileName,
00029 int lineNumber)
00030 {
00031 if (!PointerIsValid(conditionName)
00032 || !PointerIsValid(fileName)
00033 || !PointerIsValid(errorType))
00034 write_stderr("TRAP: ExceptionalCondition: bad arguments\n");
00035 else
00036 {
00037 write_stderr("TRAP: %s(\"%s\", File: \"%s\", Line: %d)\n",
00038 errorType, conditionName,
00039 fileName, lineNumber);
00040 }
00041
00042
00043 fflush(stderr);
00044
00045 #ifdef SLEEP_ON_ASSERT
00046
00047
00048
00049
00050
00051 sleep(1000000);
00052 #endif
00053
00054 abort();
00055 }