X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9ef00c02d22fb5e225ef4c46d9cbd8cc22257c11..c41f6db03c1da0871287a5b70f919ab44278d938:/include/xbt/ex.h diff --git a/include/xbt/ex.h b/include/xbt/ex.h index 9a457b9b68..c2de673bc6 100644 --- a/include/xbt/ex.h +++ b/include/xbt/ex.h @@ -72,10 +72,6 @@ typedef struct { __ex_mctx_struct } __ex_mctx_t; /** @addtogroup XBT_ex * @brief A set of macros providing exception a la C++ in ANSI C (grounding feature) * - *
Top [\ref index]::[\ref XBT_API] - *
Prev [\ref XBT_syscall] - *
Next [\ref XBT_log]
- * * This module is a small ISO-C++ style exception handling library * for use in the ISO-C language. It allows you to use the paradigm * of throwing and catching exceptions in order to reduce the amount @@ -92,12 +88,16 @@ typedef struct { __ex_mctx_struct } __ex_mctx_t; * These features are brought to you by a modified version of the libex * library, one of the numerous masterpiece of Ralf S. Engelschall. * + * \htmlonly
\endhtmlonly + * * @section XBT_ex_toc TABLE OF CONTENTS * * - \ref XBT_ex_intro * - \ref XBT_ex_base * - \ref XBT_ex_pitfalls * + * \htmlonly
\endhtmlonly + * * @section XBT_ex_intro DESCRIPTION * * In SimGrid, an exception is a triple <\a msg , \a category , \a value> @@ -237,7 +237,7 @@ typedef struct { int line; char *func; /**< to be freed only for remote exceptions */ /* Backtrace */ - void *bt[10]; + void *bt[XBT_BACKTRACE_SIZE]; int used; } xbt_ex_t; @@ -258,7 +258,7 @@ typedef struct { (ctx)->ctx_mctx = NULL; \ (ctx)->ctx_caught = 0; \ (ctx)->ctx_ex.msg = NULL; \ - (ctx)->ctx_ex.category = 0; \ + (ctx)->ctx_ex.category = unknown_error; \ (ctx)->ctx_ex.value = 0; \ (ctx)->ctx_ex.host = NULL; \ (ctx)->ctx_ex.procname = NULL; \ @@ -369,14 +369,14 @@ extern void __xbt_ex_terminate_default(xbt_ex_t *e); do { /* change this sequence into one block */ \ /* build the exception */ \ __xbt_ex_ctx()->ctx_ex.msg = (m); \ - __xbt_ex_ctx()->ctx_ex.category = (c); \ + __xbt_ex_ctx()->ctx_ex.category = (xbt_errcat_t)(c); \ __xbt_ex_ctx()->ctx_ex.value = (v); \ __xbt_ex_ctx()->ctx_ex.host = (char*)NULL; \ __xbt_ex_ctx()->ctx_ex.procname = strdup(xbt_procname()); \ __xbt_ex_ctx()->ctx_ex.file = (char*)__FILE__; \ __xbt_ex_ctx()->ctx_ex.line = __LINE__; \ __xbt_ex_ctx()->ctx_ex.func = (char*)_XBT_FUNCTION; \ - __xbt_ex_ctx()->ctx_ex.used = backtrace((void**)__xbt_ex_ctx()->ctx_ex.bt,10);\ + __xbt_ex_ctx()->ctx_ex.used = backtrace((void**)__xbt_ex_ctx()->ctx_ex.bt,XBT_BACKTRACE_SIZE);\ /* deal with the exception */ \ if (__xbt_ex_ctx()->ctx_mctx == NULL) \ __xbt_ex_terminate((xbt_ex_t *)&(__xbt_ex_ctx()->ctx_ex)); /* not catched */\