summaryrefslogtreecommitdiffstats
path: root/examples/h5dsm_example.h
blob: cbaff5a6ac261b55229fe89df13c13f27ad95c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <mpi.h>
#include <hdf5.h>
#include <daos.h>

/* Macros for printing standard messages and issuing errors */
#define AT()            printf ("        at %s:%d in %s()...\n", __FILE__, __LINE__, __FUNCTION__)
#define FAILED()        do {puts("*FAILED*");fflush(stdout);} while(0)
#define ERROR           do {FAILED(); AT(); goto error;} while(0)
#define PRINTF_ERROR(...) do {FAILED(); AT(); printf("        " __VA_ARGS__); printf("\n"); goto error;} while(0)