cr_error.h revision 43ec799dbc8971afca055dd7f8fd479b7b72f338
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_ERROR_H
#define CR_ERROR_H
#include <iprt/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __GNUC__
#define NORETURN_PRINTF
#define PRINTF
#elif defined IN_GUEST
#define NORETURN_PRINTF __attribute__ ((__noreturn__,format(printf,1,2)))
#define PRINTF __attribute__ ((format(printf,1,2)))
#else
#define NORETURN_PRINTF
#define PRINTF
#endif
DECLEXPORT(void) crEnableWarnings(int onOff);
DECLEXPORT(void) crDebug( char *format, ... ) PRINTF;
DECLEXPORT(void) crWarning( char *format, ... ) PRINTF;
DECLEXPORT(void) crInfo( char *format, ... ) PRINTF;
DECLEXPORT(void) crError( char *format, ... ) NORETURN_PRINTF;
/* Throw more info while opengl is not stable */
#if defined(DEBUG) || 1
#define CRASSERT( PRED ) ((PRED)?(void)0:crError( "Assertion failed: %s, file %s, line %d", #PRED, __FILE__, __LINE__))
#define THREADASSERT( PRED ) ((PRED)?(void)0:crError( "Are you trying to run a threaded app ?\nBuild with 'make threadsafe'\nAssertion failed: %s, file %s, line %d", #PRED, __FILE__, __LINE__))
#else
#define CRASSERT( PRED ) ((void)0)
#define THREADASSERT( PRED ) ((void)0)
#endif
#ifdef __cplusplus
}
#endif
#endif /* CR_ERROR_H */