Logo AND Algorithmique Numérique Distribuée

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