X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cd706f857a8a1207d4e76ae74f52776230765f13..e15846cf268bfbeed4694bea0ac1492eada00175:/include/xbt/ex.h diff --git a/include/xbt/ex.h b/include/xbt/ex.h index 7c0fa96bf5..cac4d3d4df 100644 --- a/include/xbt/ex.h +++ b/include/xbt/ex.h @@ -24,19 +24,13 @@ SG_BEGIN_DECL /** Helper function used to throw exceptions in C */ -XBT_ATTRIB_NORETURN XBT_PUBLIC void _xbt_throw(char* message, int value, const char* file, int line, const char* func); - -/** Builds and throws an exception - * @ingroup XBT_ex_c - * @hideinitializer - */ -#define THROW(v) _xbt_throw(NULL, (v), __FILE__, __LINE__, __func__) +XBT_ATTRIB_NORETURN XBT_PUBLIC void _xbt_throw(char* message, const char* file, int line, const char* func); /** Builds and throws an exception with a printf-like formatted message * @ingroup XBT_ex_c * @hideinitializer */ -#define THROWF(v, ...) _xbt_throw(bprintf(__VA_ARGS__), (v), __FILE__, __LINE__, __func__) +#define THROW(...) _xbt_throw(bprintf(__VA_ARGS__), __FILE__, __LINE__, __func__) XBT_ATTRIB_NORETURN void xbt_throw_impossible(const char* file, int line, const char* func); /** Throw an exception because something impossible happened