diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-27 15:58:36 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-27 15:58:36 (GMT) |
commit | 237fc48acbc3eefc6aac46d1eef148ce0cc69421 (patch) | |
tree | 0ffe441010565375b9ce8bc8ebde8e75f7d87141 /pablo/ProcTrace.h | |
parent | 15349afd346599ab2c5d47130e94f850378b8d87 (diff) | |
download | hdf5-237fc48acbc3eefc6aac46d1eef148ce0cc69421.zip hdf5-237fc48acbc3eefc6aac46d1eef148ce0cc69421.tar.gz hdf5-237fc48acbc3eefc6aac46d1eef148ce0cc69421.tar.bz2 |
[svn-r7115] Purpose:
Update code
Description:
Incorporate Pablo support patches from Dan Wells
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
Diffstat (limited to 'pablo/ProcTrace.h')
-rw-r--r-- | pablo/ProcTrace.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pablo/ProcTrace.h b/pablo/ProcTrace.h index 6ff2911..e9e3d31 100644 --- a/pablo/ProcTrace.h +++ b/pablo/ProcTrace.h @@ -88,8 +88,8 @@ #undef RUNTIME_TRACE #endif enum HDF_IDS { -NO_TRACE, -RUNTIME_TRACE, +NO_TRACE = 0, +RUNTIME_TRACE = 1, SUMMARY_TRACE, MPI_RUNTIME_TRACE, MPI_SUMMARY_TRACE, @@ -102,6 +102,7 @@ NUM_HDF_IDS #define SUPPRESS_MPIO_TRACE 6 #define ID_HDF_Last_Entry ID_ALLHDF -void HDFinitTrace( const char *, int trace_id, ... ); +void HDFinitTrace( const char *, int procNum, int trace_id, ... ); void HDFendTrace( void ); +void setHDFcallLevel( int ); #endif /* PROCTRACE_H */ |