Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 65109b73 authored by gsell's avatar gsell
Browse files

example/H5/openclose.c

- call to H5SetDebugMask() added
parent 792e86e0
No related branches found
No related tags found
No related merge requests found
......@@ -11,12 +11,16 @@
#include "examples.h"
#if !defined(VERBOSITY)
#define VERBOSITY H5_VERBOSE_ERROR
#endif
/*
Use H5_DEBUG_ALL to get full debug output
*/
#if !defined(VERBOSITY)
#define VERBOSITY H5_VERBOSE_ERROR
/* #undef VERBOSITY H5_DEBUG_ALL */
#if !defined(DEBUGMASK)
#define DEBUGMASK H5_DEBUG_NONE
//#define DEBUGMASK H5_DEBUG_ALL
#endif
int
......@@ -28,6 +32,7 @@ main (
MPI_Init (&argc, &argv);
H5SetVerbosityLevel (VERBOSITY);
H5SetDebugMask (DEBUGMASK);
h5_prop_t prop = H5CreateFileProp ();
H5SetPropFileMPIOCollective (prop, &comm);
h5_file_t f = H5OpenFile ("testfile.h5", H5_O_WRONLY, prop);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment