From: mquinson Date: Wed, 14 Mar 2007 09:21:45 +0000 (+0000) Subject: Use XBT_PUBLIC_DATA instead of XBT_DECLARE_DATA X-Git-Tag: v3.3~2093 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9265d9c593ebc87d80374d2c4d1e7b76c1bc1ffb?ds=sidebyside Use XBT_PUBLIC_DATA instead of XBT_DECLARE_DATA git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3266 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/ex.h b/include/xbt/ex.h index e68c430f51..9a7e3c45df 100644 --- a/include/xbt/ex.h +++ b/include/xbt/ex.h @@ -309,12 +309,12 @@ typedef struct { /* the exception context */ typedef ex_ctx_t *(*ex_ctx_cb_t)(void); -extern ex_ctx_cb_t XBT_DECLARE_DATA __xbt_ex_ctx; +XBT_PUBLIC_DATA(ex_ctx_cb_t) __xbt_ex_ctx; extern ex_ctx_t *__xbt_ex_ctx_default(void); /* the termination handler */ typedef void (*ex_term_cb_t)(xbt_ex_t *); -extern ex_term_cb_t XBT_DECLARE_DATA __xbt_ex_terminate; +XBT_PUBLIC_DATA(ex_term_cb_t) __xbt_ex_terminate; extern void __xbt_ex_terminate_default(xbt_ex_t *e); /** @brief Introduce a block where exception may be dealed with