X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f783ed4680c6862a1b7543237e89d1221334bae0..f4e1c8752e7100a06bec488f150eff25d928ca34:/include/xbt/ex.h diff --git a/include/xbt/ex.h b/include/xbt/ex.h index 50ef63e9fe..f1f3cc968c 100644 --- a/include/xbt/ex.h +++ b/include/xbt/ex.h @@ -55,15 +55,15 @@ SG_BEGIN_DECL() # include #include # define MAYDAY_SAVE(m) printf("%d %s:%d save %p\n", \ - (*xbt_getpid)(),__FILE__,__LINE__, \ + xbt_getpid(), __FILE__, __LINE__, \ (m)->jb \ ), # define MAYDAY_RESTORE(m) printf("%d %s:%d restore %p\n", \ - (*xbt_getpid)(),__FILE__,__LINE__, \ + xbt_getpid(), __FILE__, __LINE__, \ (m)->jb \ ), # define MAYDAY_CATCH(e) printf("%d %s:%d Catched '%s'\n", \ - (*xbt_getpid)(),__FILE__,__LINE__, \ + xbt_getpid(), __FILE__, __LINE__, \ (e).msg \ ), #else @@ -450,7 +450,7 @@ extern void __xbt_ex_terminate_default(xbt_ex_t * e); _throw_ctx->exception.remote = 0; \ _throw_ctx->exception.host = (char*)NULL; \ _throw_ctx->exception.procname = (char*)xbt_procname(); \ - _throw_ctx->exception.pid = (*xbt_getpid)(); \ + _throw_ctx->exception.pid = xbt_getpid(); \ _throw_ctx->exception.file = (char*)__FILE__; \ _throw_ctx->exception.line = __LINE__; \ _throw_ctx->exception.func = (char*)_XBT_FUNCTION; \