assert.c

来自「PostgreSQL7.4.6 for Linux」· C语言 代码 · 共 50 行

C
50
字号
/*------------------------------------------------------------------------- * * assert.c *	  Assert code. * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION *	  $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.24 2003/08/04 02:40:06 momjian Exp $ * * NOTE *	  This should eventually work with elog() * *------------------------------------------------------------------------- */#include "postgres.h"#include <unistd.h>/* * ExceptionalCondition - Handles the failure of an Assert() */intExceptionalCondition(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);	}#ifdef SLEEP_ON_ASSERT	sleep(1000000);#endif	abort();	return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?