mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-26 08:03:03 +01:00
503548c7af
(The problem appeared when I applied utils_proto.h in more places.)
66 lines
1.9 KiB
C
66 lines
1.9 KiB
C
/*
|
|
* The contents of this file are subject to the Interbase Public
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
*
|
|
* Software distributed under the License is distributed on an
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
* or implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code was created by Inprise Corporation
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
* Copyright (C) Inprise Corporation.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
* CVC: Do not override local fb_assert like the ones in gpre and dsql.
|
|
*/
|
|
#ifndef JRD_GDSASSERT_H
|
|
#define JRD_GDSASSERT_H
|
|
|
|
|
|
#include "../jrd/gds_proto.h"
|
|
|
|
#ifdef DEV_BUILD
|
|
|
|
#include <stdlib.h> // abort()
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
/* fb_assert() has been made into a generic version that works across
|
|
* gds components. Previously, the fb_assert() defined here was only
|
|
* usable within the engine.
|
|
* 1996-Feb-09 David Schnepper
|
|
*/
|
|
|
|
#define FB_GDS_ASSERT_FAILURE_STRING "GDS Assertion failure: %s %"LINEFORMAT"\n"
|
|
|
|
#ifdef SUPERSERVER
|
|
|
|
#if !defined(fb_assert)
|
|
#define fb_assert(ex) {if (!(ex)) {gds__log (FB_GDS_ASSERT_FAILURE_STRING, __FILE__, __LINE__); abort();}}
|
|
#define fb_assert_continue(ex) {if (!(ex)) {gds__log (FB_GDS_ASSERT_FAILURE_STRING, __FILE__, __LINE__);}}
|
|
#endif
|
|
|
|
#else // !SUPERSERVER
|
|
|
|
#if !defined(fb_assert)
|
|
#define fb_assert(ex) {if (!(ex)) {fprintf (stderr, FB_GDS_ASSERT_FAILURE_STRING, __FILE__, __LINE__); abort();}}
|
|
#define fb_assert_continue(ex) {if (!(ex)) {fprintf (stderr, FB_GDS_ASSERT_FAILURE_STRING, __FILE__, __LINE__);}}
|
|
#endif
|
|
|
|
#endif // SUPERSERVER
|
|
|
|
#else // DEV_BUILD
|
|
|
|
#define fb_assert(ex) // nothing
|
|
#define fb_assert_continue(ex) // nothing
|
|
|
|
#endif // DEV_BUILD
|
|
|
|
#endif // JRD_GDSASSERT_H
|
|
|