Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Go for a thread_cancel instead of a thread_destroy since every documentation says...
[simgrid.git] / include / xbt / ex.h
1 /* $Id$ */
2
3 /* ex - Exception Handling (modified to fit into SimGrid from OSSP version) */
4
5 /*  Copyright (c) 2005-2006 Martin Quinson                                  */
6 /*  Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com>       */
7 /*  Copyright (c) 2002-2004 The OSSP Project <http://www.ossp.org/>         */
8 /*  Copyright (c) 2002-2004 Cable & Wireless <http://www.cw.com/>           */
9 /*  All rights reserved.                                                    */
10
11 /* This program is free software; you can redistribute it and/or modify it
12   * under the terms of the license (GNU LGPL) which comes with this package. */
13
14 #ifndef __XBT_EX_H__
15 #define __XBT_EX_H__
16
17 #include "xbt/sysdep.h"
18 #include "xbt/misc.h"
19 #include "xbt/virtu.h"
20
21 /* do not include execinfo.h directly since it's not always available. 
22    Instead, copy the parts we need (and fake when it's not there) */
23 XBT_PUBLIC(int) backtrace (void **__array, int __size);
24
25
26 /*-*-* Emergency debuging: define this when the exceptions get crazy *-*-*/
27 #undef __EX_MAYDAY
28
29 #ifdef __EX_MAYDAY
30 # include <stdio.h>
31 #include <errno.h>
32
33 #  define MAYDAY_SAVE(m)    printf("%d %s:%d save %p\n",                \
34                                    (*xbt_getpid)(),__FILE__,__LINE__,  \
35                                    (m)->jb                              \
36                                   ),
37 #  define MAYDAY_RESTORE(m) printf("%d %s:%d restore %p\n",             \
38                                    (*xbt_getpid)(),__FILE__,__LINE__,  \
39                                    (m)->jb                              \
40                                   ),
41 #  define MAYDAY_CATCH(e)   printf("%d %s:%d Catched '%s'\n",           \
42                                    (*xbt_getpid)(),__FILE__,__LINE__,  \
43                                    e.msg                                \
44                                   ),
45 #else
46 #  define MAYDAY_SAVE(m)
47 #  define MAYDAY_RESTORE(m)
48 #  define MAYDAY_CATCH(e)
49 #endif
50
51 /*-*-* end of debugging stuff *-*-*/
52
53 #if defined(__EX_MCTX_MCSC__)
54 #include <ucontext.h>            /* POSIX.1 ucontext(3) */
55 #define __ex_mctx_struct         ucontext_t uc;
56 #define __ex_mctx_save(mctx)     (getcontext(&(mctx)->uc) == 0)
57 #define __ex_mctx_restored(mctx) /* noop */
58 #define __ex_mctx_restore(mctx)  (void)setcontext(&(mctx)->uc)
59
60 #elif defined(__EX_MCTX_SSJLJ__)
61 #include <setjmp.h>              /* POSIX.1 sigjmp_buf(3) */
62 #define __ex_mctx_struct         sigjmp_buf jb;
63 #define __ex_mctx_save(mctx)     (sigsetjmp((mctx)->jb, 1) == 0)
64 #define __ex_mctx_restored(mctx) /* noop */
65 #define __ex_mctx_restore(mctx)  (void)siglongjmp((mctx)->jb, 1)
66
67 #elif defined(__EX_MCTX_SJLJ__) || !defined(__EX_MCTX_CUSTOM__) || defined(__EX_MAYDAY)
68 #include <setjmp.h>              /* ISO-C jmp_buf(3) */
69 #define __ex_mctx_struct         jmp_buf jb;
70 #define __ex_mctx_save(mctx)     ( MAYDAY_SAVE(mctx) setjmp((mctx)->jb) == 0)
71 #define __ex_mctx_restored(mctx) /* noop */
72 #define __ex_mctx_restore(mctx)  ( MAYDAY_RESTORE(mctx) (void)longjmp((mctx)->jb, 1))
73 #endif
74
75 /* declare the machine context type */
76 typedef struct { __ex_mctx_struct } __ex_mctx_t;
77
78 /** @addtogroup XBT_ex
79  *  @brief A set of macros providing exception a la C++ in ANSI C (grounding feature)
80  *
81  * This module is a small ISO-C++ style exception handling library
82  * for use in the ISO-C language. It allows you to use the paradigm 
83  * of throwing and catching exceptions in order to reduce the amount
84  * of error handling code without hindering program robustness.
85  *               
86  * This is achieved by directly transferring exceptional return codes
87  * (and the program control flow) from the location where the exception
88  * is raised (throw point) to the location where it is handled (catch
89  * point) -- usually from a deeply nested sub-routine to a parent 
90  * routine. All intermediate routines no longer have to make sure that 
91  * the exceptional return codes from sub-routines are correctly passed 
92  * back to the parent.
93  *
94  * These features are brought to you by a modified version of the libex 
95  * library, one of the numerous masterpiece of Ralf S. Engelschall.
96  *
97  * \htmlonly <div class="toc">\endhtmlonly
98  *
99  * @section XBT_ex_toc TABLE OF CONTENTS
100  *
101  *  - \ref XBT_ex_intro
102  *  - \ref XBT_ex_base
103  *  - \ref XBT_ex_pitfalls
104  *
105  * \htmlonly </div> \endhtmlonly
106  *
107  * @section XBT_ex_intro DESCRIPTION
108  * 
109  * In SimGrid, an exception is a triple <\a msg , \a category , \a value> 
110  * where \a msg is a human-readable text describing the exceptional 
111  * condition, \a code an integer describing what went wrong and \a value
112  * providing a sort of sub-category. (this is different in the original libex).
113  *
114  * @section XBT_ex_base BASIC USAGE
115  *
116  * \em TRY \b TRIED_BLOCK [\em CLEANUP \b CLEANUP_BLOCK] \em CATCH (variable) \b CATCH_BLOCK
117  *
118  * This is the primary syntactical construct provided. It is modeled after the
119  * ISO-C++ try-catch clause and should sound familiar to most of you.
120  *
121  * Any exception thrown directly from the TRIED_BLOCK block or from called
122  * subroutines is caught. Cleanups which must be done after this block
123  * (whenever an exception arised or not) should be placed into the optionnal
124  * CLEANUP_BLOCK. The code dealing with the exceptions when they arise should
125  * be placed into the (mandatory) CATCH_BLOCK.
126  *
127  * 
128  * In absence of exception, the control flow goes into the blocks TRIED_BLOCK
129  * and CLEANUP_BLOCK (if present); The CATCH_BLOCK block is then ignored. 
130  *
131  * When an exception is thrown, the control flow goes through the following
132  * blocks: TRIED_BLOCK (up to the statement throwing the exception),
133  * CLEANUP_BLOCK (if any) and CATCH_BLOCK. The exception is stored in a
134  * variable for inspection inside the CATCH_BLOCK. This variable must be
135  * declared in the outter scope, but its value is only valid within the
136  * CATCH_BLOCK block. 
137  *
138  * Some notes:
139  *  - TRY, CLEANUP and CATCH cannot be used separately, they work
140  *    only in combination and form a language clause as a whole.
141  *  - In contrast to the syntax of other languages (such as C++ or Jave) there
142  *    is only one CATCH block and not multiple ones (all exceptions are
143  *    of the same \em xbt_ex_t C type). 
144  *  - the variable of CATCH can naturally be reused in subsequent 
145  *    CATCH clauses.
146  *  - it is possible to nest TRY clauses.
147  *
148  * The TRY block is a regular ISO-C language statement block, but
149  * 
150  * <center><b>it is not
151  * allowed to jump into it via "goto" or longjmp(3) or out of it via "break",
152  * "return", "goto" or longjmp(3)</b>.</center>
153  *
154  * This is because there is some hidden setup and
155  * cleanup that needs to be done regardless of whether an exception is
156  * caught. Bypassing these steps will break the exception handling facility.
157  * The symptom are likely to be a segfault at the next exception raising point,  
158  * ie far away from the point where you did the mistake. If you suspect
159  * that kind of error in your code, have a look at the little script
160  * <tt>tools/xbt_exception_checker</tt> in the CVS. It extracts all the TRY
161  * blocks from a set of C files you give it and display them (and only
162  * them) on the standard output. You can then grep for the forbidden 
163  * keywords on that output.
164  *   
165  * The CLEANUP and CATCH blocks are regular ISO-C language statement
166  * blocks without any restrictions. You are even allowed to throw (and, in the
167  * CATCH block, to re-throw) exceptions.
168  *
169  * There is one subtle detail you should remember about TRY blocks:
170  * Variables used in the CLEANUP or CATCH clauses must be declared with
171  * the storage class "volatile", otherwise they might contain outdated
172  * information if an exception is thrown.
173  *
174  *
175  * This is because you usually do not know which commands in the TRY
176  * were already successful before the exception was thrown (logically speaking)
177  * and because the underlying ISO-C setjmp(3) facility applies those
178  * restrictions (technically speaking). As a matter of fact, value changes
179  * between the TRY and the THROW may be discarded if you forget the
180  * "volatile" keyword. 
181  * 
182  * \section XBT_ex_pitfalls PROGRAMMING PITFALLS 
183  *
184  * Exception handling is a very elegant and efficient way of dealing with
185  * exceptional situation. Nevertheless it requires additional discipline in
186  * programming and there are a few pitfalls one must be aware of. Look the
187  * following code which shows some pitfalls and contains many errors (assuming
188  * a mallocex() function which throws an exception if malloc(3) fails):
189  *
190  * \dontinclude ex.c
191  * \skip BAD_EXAMPLE
192  * \until end_of_bad_example
193  *
194  * This example raises a few issues:
195  *  -# \b variable \b scope \n
196  *     Variables which are used in the CLEANUP or CATCH clauses must be
197  *     declared before the TRY clause, otherwise they only exist inside the
198  *     TRY block. In the example above, cp1, cp2 and cp3 only exist in the
199  *     TRY block and are invisible from the CLEANUP and CATCH
200  *     blocks.
201  *  -# \b variable \b initialization \n
202  *     Variables which are used in the CLEANUP or CATCH clauses must
203  *     be initialized before the point of the first possible THROW is
204  *     reached. In the example above, CLEANUP would have trouble using cp3
205  *     if mallocex() throws a exception when allocating a TOOBIG buffer.
206  *  -# \b volatile \b variable \n
207  *     Variables which are used in the CLEANUP or CATCH clauses MUST BE
208  *     DECLARED AS "volatile", otherwise they might contain outdated
209  *     information when an exception is thrown. 
210  *  -# \b clean \b before \b catch \n
211  *     The CLEANUP clause is not only place before the CATCH clause in
212  *     the source code, it also occures before in the control flow. So,
213  *     resources being cleaned up cannot be used in the CATCH block. In the
214  *     example, c3 gets freed before the printf placed in CATCH.
215  *  -# \b variable \b uninitialization \n
216  *     If resources are passed out of the scope of the
217  *     TRY/CLEANUP/CATCH construct, they naturally shouldn't get
218  *     cleaned up. The example above does free(3) cp1 in CLEANUP although
219  *     its value was affected to globalcontext->first, invalidating this
220  *     pointer.
221
222  * The following is fixed version of the code (annotated with the pitfall items
223  * for reference): 
224  *
225  * \skip GOOD_EXAMPLE
226  * \until end_of_good_example
227  *
228  * @{
229  */
230
231 /** @brief different kind of errors */
232 typedef enum {
233   unknown_error=0,  /**< unknown error */
234   arg_error,        /**< Invalid argument */
235   mismatch_error,   /**< The provided ID does not match */
236   not_found_error,  /**< The searched element was not found */
237   
238   system_error,   /**< a syscall did fail */
239   network_error,  /**< error while sending/receiving data */
240   timeout_error,  /**< not quick enough, dude */
241   thread_error,    /**< error while [un]locking */
242         host_error                      /**< host failed */
243 } xbt_errcat_t;
244
245 XBT_PUBLIC(const char *) xbt_ex_catname(xbt_errcat_t cat);
246
247 /** @brief Structure describing an exception */
248 typedef struct {
249   char        *msg;      /**< human readable message */
250   xbt_errcat_t category; /**< category like HTTP (what went wrong) */
251   int          value;    /**< like errno (why did it went wrong) */
252   /* throw point */
253   short int remote; /**< whether it was raised remotely */
254   char *host;     /**< NULL locally thrown exceptions; full hostname if remote ones */
255   /* FIXME: host should be hostname:port[#thread] */
256   char *procname; /**< Name of the process who thrown this */
257   int pid;        /**< PID of the process who thrown this */
258   char *file;     /**< Thrown point */
259   int   line;     /**< Thrown point */
260   char *func;     /**< Thrown point */
261   /* Backtrace */
262   int   used;
263   char **bt_strings; /* only filed on display (or before the network propagation) */
264   void *bt[XBT_BACKTRACE_SIZE];
265 } xbt_ex_t;
266
267 /* declare the context type (private) */
268 typedef struct {
269     __ex_mctx_t  *ctx_mctx;     /* permanent machine context of enclosing try/catch */
270     volatile int ctx_caught;    /* temporary flag whether exception was caught */
271     volatile xbt_ex_t ctx_ex;   /* temporary exception storage */
272 } ex_ctx_t;
273
274 /* the static and dynamic initializers for a context structure */
275 #define XBT_CTX_INITIALIZER \
276     { NULL, 0, { /* content */ NULL, unknown_error, 0, \
277                  /* throw point*/ 0,NULL, NULL,0, NULL, 0, NULL,\
278                  /* backtrace */ 0,NULL,{NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL} } }
279 #define XBT_CTX_INITIALIZE(ctx) \
280     do { \
281         (ctx)->ctx_mctx          = NULL; \
282         (ctx)->ctx_caught        = 0;    \
283         (ctx)->ctx_ex.msg        = NULL; \
284         (ctx)->ctx_ex.category   = 0;    \
285         (ctx)->ctx_ex.value      = 0;    \
286         (ctx)->ctx_ex.remote     = 0;    \
287         (ctx)->ctx_ex.host       = NULL; \
288         (ctx)->ctx_ex.procname   = NULL; \
289         (ctx)->ctx_ex.pid        = 0;    \
290         (ctx)->ctx_ex.file       = NULL; \
291         (ctx)->ctx_ex.line       = 0;    \
292         (ctx)->ctx_ex.func       = NULL; \
293         (ctx)->ctx_ex.bt[0]      = NULL; \
294         (ctx)->ctx_ex.bt[1]      = NULL; \
295         (ctx)->ctx_ex.bt[2]      = NULL; \
296         (ctx)->ctx_ex.bt[3]      = NULL; \
297         (ctx)->ctx_ex.bt[4]      = NULL; \
298         (ctx)->ctx_ex.bt[5]      = NULL; \
299         (ctx)->ctx_ex.bt[6]      = NULL; \
300         (ctx)->ctx_ex.bt[7]      = NULL; \
301         (ctx)->ctx_ex.bt[8]      = NULL; \
302         (ctx)->ctx_ex.bt[9]      = NULL; \
303         (ctx)->ctx_ex.used       = 0; \
304         (ctx)->ctx_ex.bt_strings = NULL; \
305     } while (0)
306
307 /* the exception context */
308 typedef ex_ctx_t *(*ex_ctx_cb_t)(void);
309 extern XBT_PUBLIC_DATA(ex_ctx_cb_t) __xbt_ex_ctx;
310 extern ex_ctx_t *__xbt_ex_ctx_default(void);
311
312 /* the termination handler */
313 typedef void (*ex_term_cb_t)(xbt_ex_t *);
314 extern XBT_PUBLIC_DATA(ex_term_cb_t) __xbt_ex_terminate;
315 extern void __xbt_ex_terminate_default(xbt_ex_t *e);
316
317 /** @brief Introduce a block where exception may be dealed with 
318  *  @hideinitializer
319  */
320 #define TRY \
321     { \
322         ex_ctx_t *__xbt_ex_ctx_ptr = __xbt_ex_ctx(); \
323         int __ex_cleanup = 0; \
324         __ex_mctx_t *__ex_mctx_en; \
325         __ex_mctx_t __ex_mctx_me; \
326         __ex_mctx_en = __xbt_ex_ctx_ptr->ctx_mctx; \
327         __xbt_ex_ctx_ptr->ctx_mctx = &__ex_mctx_me; \
328         if (__ex_mctx_save(&__ex_mctx_me)) { \
329             if (1)
330
331 /** @brief optional(!) block for cleanup 
332  *  @hideinitializer
333  */
334 #define CLEANUP \
335             else { \
336             } \
337             __xbt_ex_ctx_ptr->ctx_caught = 0; \
338         } else { \
339             __ex_mctx_restored(&__ex_mctx_me); \
340             __xbt_ex_ctx_ptr->ctx_caught = 1; \
341         } \
342         __xbt_ex_ctx_ptr->ctx_mctx = __ex_mctx_en; \
343         __ex_cleanup = 1; \
344         if (1) { \
345             if (1)
346
347 #ifndef DOXYGEN_SKIP
348 #  ifdef __cplusplus
349 #    define XBT_EX_T_CPLUSPLUSCAST (xbt_ex_t&)
350 #  else
351 #    define XBT_EX_T_CPLUSPLUSCAST 
352 #  endif
353 #endif
354
355 /** @brief the block for catching (ie, deal with) an exception 
356  *  @hideinitializer
357  */
358 #define CATCH(e) \
359             else { \
360             } \
361             if (!(__ex_cleanup)) \
362                 __xbt_ex_ctx_ptr->ctx_caught = 0; \
363         } else { \
364             if (!(__ex_cleanup)) { \
365                 __ex_mctx_restored(&__ex_mctx_me); \
366                 __xbt_ex_ctx_ptr->ctx_caught = 1; \
367             } \
368         } \
369         __xbt_ex_ctx_ptr->ctx_mctx = __ex_mctx_en; \
370     } \
371     if (   !(__xbt_ex_ctx()->ctx_caught) \
372         || ((e) = XBT_EX_T_CPLUSPLUSCAST __xbt_ex_ctx()->ctx_ex, MAYDAY_CATCH(e) 0)) { \
373     } \
374     else
375
376 #define DO_THROW(e) \
377      /* deal with the exception */                                             \
378      if (__xbt_ex_ctx()->ctx_mctx == NULL)                                     \
379        __xbt_ex_terminate((xbt_ex_t *)&(e)); /* not catched */\
380      else                                                                      \
381        __ex_mctx_restore(__xbt_ex_ctx()->ctx_mctx); /* catched somewhere */    \
382      abort()/* nope, stupid GCC, we won't survive a THROW (this won't be reached) */
383
384 /** @brief Helper macro for THROWS0-6
385  *  @hideinitializer
386  *
387  *  @param c: category code (integer)
388  *  @param v: value (integer)
389  *  @param m: message text
390  *
391  * If called from within a TRY/CATCH construct, this exception 
392  * is copied into the CATCH relevant variable program control flow 
393  * is derouted to the CATCH (after the optional sg_cleanup). 
394  *
395  * If no TRY/CATCH construct embeeds this call, the program calls
396  * abort(3). 
397  *
398  * The THROW can be performed everywhere, including inside TRY, 
399  * CLEANUP and CATCH blocks.
400  */
401
402 #define _THROW(c,v,m) \
403   do { /* change this sequence into one block */                              \
404      /* build the exception */                                                \
405      __xbt_ex_ctx()->ctx_ex.msg      = (m);                                   \
406      __xbt_ex_ctx()->ctx_ex.category = (xbt_errcat_t)(c);                     \
407      __xbt_ex_ctx()->ctx_ex.value    = (v);                                   \
408      __xbt_ex_ctx()->ctx_ex.remote   = 0;                                     \
409      __xbt_ex_ctx()->ctx_ex.host     = (char*)NULL;                           \
410      __xbt_ex_ctx()->ctx_ex.procname = (char*)xbt_procname();                 \
411      __xbt_ex_ctx()->ctx_ex.pid      = (*xbt_getpid)();                       \
412      __xbt_ex_ctx()->ctx_ex.file     = (char*)__FILE__;                       \
413      __xbt_ex_ctx()->ctx_ex.line     = __LINE__;                              \
414      __xbt_ex_ctx()->ctx_ex.func     = (char*)_XBT_FUNCTION;                  \
415      __xbt_ex_ctx()->ctx_ex.used     = backtrace((void**)__xbt_ex_ctx()->ctx_ex.bt,XBT_BACKTRACE_SIZE);\
416      __xbt_ex_ctx()->ctx_ex.bt_strings = NULL; \
417      DO_THROW(__xbt_ex_ctx()->ctx_ex);\
418   } while (0)
419
420 /** @brief Builds and throws an exception with a string taking no arguments
421     @hideinitializer */
422 #define THROW0(c,v,m)                   _THROW(c,v,(m?bprintf(m):NULL))
423 /** @brief Builds and throws an exception with a string taking one argument
424     @hideinitializer */
425 #define THROW1(c,v,m,a1)                _THROW(c,v,bprintf(m,a1))
426 /** @brief Builds and throws an exception with a string taking two arguments
427     @hideinitializer */
428 #define THROW2(c,v,m,a1,a2)             _THROW(c,v,bprintf(m,a1,a2))
429 /** @brief Builds and throws an exception with a string taking three arguments
430     @hideinitializer */
431 #define THROW3(c,v,m,a1,a2,a3)          _THROW(c,v,bprintf(m,a1,a2,a3))
432 /** @brief Builds and throws an exception with a string taking four arguments
433     @hideinitializer */
434 #define THROW4(c,v,m,a1,a2,a3,a4)       _THROW(c,v,bprintf(m,a1,a2,a3,a4))
435 /** @brief Builds and throws an exception with a string taking five arguments
436     @hideinitializer */
437 #define THROW5(c,v,m,a1,a2,a3,a4,a5)    _THROW(c,v,bprintf(m,a1,a2,a3,a4,a5))
438 /** @brief Builds and throws an exception with a string taking six arguments
439     @hideinitializer */
440 #define THROW6(c,v,m,a1,a2,a3,a4,a5,a6) _THROW(c,v,bprintf(m,a1,a2,a3,a4,a5,a6))
441 /** @brief Builds and throws an exception with a string taking seven arguments
442     @hideinitializer */
443 #define THROW7(c,v,m,a1,a2,a3,a4,a5,a6,a7) _THROW(c,v,bprintf(m,a1,a2,a3,a4,a5,a6,a7))
444
445 #define THROW_IMPOSSIBLE     THROW0(unknown_error,0,"The Impossible Did Happen (yet again)")
446 #define THROW_UNIMPLEMENTED  THROW1(unknown_error,0,"Function %s unimplemented",_XBT_FUNCTION)
447
448 #ifndef NDEBUG
449 #  define DIE_IMPOSSIBLE       xbt_assert0(0,"The Impossible Did Happen (yet again)")
450 #else
451 #  define DIE_IMPOSSIBLE       exit(1);
452 #endif
453
454 /** @brief re-throwing of an already caught exception (ie, pass it to the upper catch block) 
455  *  @hideinitializer
456  */
457 #define RETHROW \
458   do { \
459    if (__xbt_ex_ctx()->ctx_mctx == NULL) \
460      __xbt_ex_terminate((xbt_ex_t *)&(__xbt_ex_ctx()->ctx_ex)); \
461    else \
462      __ex_mctx_restore(__xbt_ex_ctx()->ctx_mctx); \
463    abort();\
464   } while(0)
465
466
467 #ifndef DOXYGEN_SKIP
468 #define _XBT_PRE_RETHROW \
469   do {                                                               \
470     char *_xbt_ex_internal_msg = __xbt_ex_ctx()->ctx_ex.msg;         \
471     __xbt_ex_ctx()->ctx_ex.msg = bprintf(
472 #define _XBT_POST_RETHROW \
473  _xbt_ex_internal_msg); \
474     free(_xbt_ex_internal_msg);                                      \
475     RETHROW;                                                         \
476   } while (0)
477 #endif
478
479 /** @brief like THROW0, but adding some details to the message of an existing exception
480  *  @hideinitializer
481  */
482 #define RETHROW0(msg)           _XBT_PRE_RETHROW msg,          _XBT_POST_RETHROW
483 /** @brief like THROW1, but adding some details to the message of an existing exception
484  *  @hideinitializer
485  */
486 #define RETHROW1(msg,a)         _XBT_PRE_RETHROW msg,a,        _XBT_POST_RETHROW
487 /** @brief like THROW2, but adding some details to the message of an existing exception
488  *  @hideinitializer
489  */
490 #define RETHROW2(msg,a,b)       _XBT_PRE_RETHROW msg,a,b,      _XBT_POST_RETHROW
491 /** @brief like THROW3, but adding some details to the message of an existing exception
492  *  @hideinitializer
493  */
494 #define RETHROW3(msg,a,b,c)     _XBT_PRE_RETHROW msg,a,b,c,    _XBT_POST_RETHROW
495 /** @brief like THROW4, but adding some details to the message of an existing exception
496  *  @hideinitializer
497  */
498 #define RETHROW4(msg,a,b,c,d)   _XBT_PRE_RETHROW msg,a,b,c,d,  _XBT_POST_RETHROW
499 /** @brief like THROW5, but adding some details to the message of an existing exception
500  *  @hideinitializer
501  */
502 #define RETHROW5(msg,a,b,c,d,e) _XBT_PRE_RETHROW msg,a,b,c,d,e, _XBT_POST_RETHROW
503
504 /** @brief Exception destructor */
505 XBT_PUBLIC(void) xbt_ex_free(xbt_ex_t e);
506
507 XBT_PUBLIC(void) xbt_ex_display(xbt_ex_t *e);
508 XBT_PUBLIC(void) xbt_backtrace_display(void);
509
510 /** @} */
511 #endif /* __XBT_EX_H__ */
512