From 6df2e2cf30e47e9911cc6ea4f20601fda857a78b Mon Sep 17 00:00:00 2001 From: schnorr Date: Tue, 23 Nov 2010 14:42:05 +0000 Subject: [PATCH] adding XBT_IN with 6 parameters git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8616 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/xbt/log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/xbt/log.h b/include/xbt/log.h index a964acdc04..f37745692f 100644 --- a/include/xbt/log.h +++ b/include/xbt/log.h @@ -705,6 +705,7 @@ extern xbt_log_layout_t xbt_log_default_layout; * @brief Log at TRACE priority that we entered in current function, appending a user specified format taking 5 args (XBT_INn exists for all n in [1,6]) */ #define XBT_IN5(fmt,a,b,c,d,e) LOG6(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c,d,e) +#define XBT_IN6(fmt,a,b,c,d,e,f) LOG7(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c,d,e,f) /** @ingroup XBT_log * @hideinitializer * @brief Log at TRACE priority that we exited the current function. -- 2.20.1