diff -r 000000000000 -r e4d67989cc36 genericopenlibs/cstdlib/LSTDLIB/ASSERT.C --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/genericopenlibs/cstdlib/LSTDLIB/ASSERT.C Tue Feb 02 02:01:42 2010 +0200 @@ -0,0 +1,63 @@ +/* +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* FUNCTION +* <>---Macro for Debugging Diagnostics +* INDEX +* assert +* ANSI_SYNOPSIS +* #include +* void assert(int <[expression]>); +* TRAD_SYNOPSIS +* #include +* assert(<[expression]>) +* int <[expression]>; +* Use this macro to embed debuggging diagnostic statements in +* your programs. The argument <[expression]> should be an +* expression which evaluates to true (nonzero) when your program +* is working as you intended. +* When <[expression]> evaluates to false (zero), <> +* calls <>, after first printing a message showing what +* failed and where: +* . Assertion failed: <[expression]>, file <[filename]>, line <[lineno]> +* The macro is defined to permit you to turn off all uses of +* <> at compile time by defining <> as a +* preprocessor variable. If you do this, the <> macro +* expands to +* . (void(0)) +* RETURNS +* <> does not return a value. +* PORTABILITY +* The <> macro is required by ANSI, as is the behavior +* when <> is defined. +* Supporting OS subroutines required (only if enabled): <>, <>, +* <>, <>, <>, <>, <>, <>, <>. +* +* +*/ + + + +#include +#include +#include + +EXPORT_C void __assert (const char *file, int line, const char *failedexpr) +{ + (void)fprintf(stderr, + "assertion \"%s\" failed: file \"%s\", line %d\n", + failedexpr, file, line); + abort(); + /* NOTREACHED */ +}