diff options
Diffstat (limited to 'src/hdf5pabl.h')
-rw-r--r-- | src/hdf5pabl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/hdf5pabl.h b/src/hdf5pabl.h index 0df5913..008a265 100644 --- a/src/hdf5pabl.h +++ b/src/hdf5pabl.h @@ -20,11 +20,13 @@ #define HDF5PABL_H #ifdef HAVE_PABLO +#define PABLO_SAVE(func_id) int pablo_func_id = func_id #define PABLO_TRACE_ON(m, f) TRACE_ON(m,f) #define PABLO_TRACE_OFF(m, f) TRACE_OFF(m,f) #else /* no Pablo tracing enabled */ -#define PABLO_TRACE_ON(m, f) -#define PABLO_TRACE_OFF(m, f) +#define PABLO_SAVE(func_id) /*void*/ +#define PABLO_TRACE_ON(m, f) /*void*/ +#define PABLO_TRACE_OFF(m, f) /*void*/ #endif /* HAVE_PABLO */ #endif /* HDF5PABL_H */ |