Logo AND Algorithmique Numérique Distribuée

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