summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-15 20:18:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-15 20:18:44 (GMT)
commit3a9da6ae38206b2498c94aebb8688613311244d1 (patch)
treefe64d22376c37edca144bf3396749c6a1ede7d10 /src
parentf05f3a33a56ac5a082c4aba3c49b9e4245f3f8b9 (diff)
downloadhdf5-3a9da6ae38206b2498c94aebb8688613311244d1.zip
hdf5-3a9da6ae38206b2498c94aebb8688613311244d1.tar.gz
hdf5-3a9da6ae38206b2498c94aebb8688613311244d1.tar.bz2
[svn-r7375] Purpose:
Clean up Pablo masks Description: H5E.c - Moved Pablo mask definition above include files, so it affects inline functions properly. H5FDstream.c - Added Pablo mask definition to address daily build failures. Platforms tested: FreeBSD 4.8 (sleipnir) too minor for h5committest
Diffstat (limited to 'src')
-rw-r--r--src/H5E.c7
-rw-r--r--src/H5FDstream.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 90a3915..6760045 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -39,13 +39,16 @@
* errors within the H5E package.
*
*/
+
+/* Pablo information */
+/* (Put before include files to avoid problems with inline functions) */
+#define PABLO_MASK H5E_mask
+
#include "H5private.h" /* Generic Functions */
#include "H5Iprivate.h" /* IDs */
#include "H5Eprivate.h" /* Private error routines */
#include "H5MMprivate.h" /* Memory management */
-#define PABLO_MASK H5E_mask
-
/* Interface initialization? */
static int interface_initialize_g = 0;
#define INTERFACE_INIT H5E_init_interface
diff --git a/src/H5FDstream.c b/src/H5FDstream.c
index 0596fc3..e2d4736 100644
--- a/src/H5FDstream.c
+++ b/src/H5FDstream.c
@@ -21,6 +21,10 @@
*
*/
+/* Pablo information */
+/* (Put before include files to avoid problems with inline functions) */
+#define PABLO_MASK H5FD_stream_mask
+
#include "H5private.h" /* library function */
/* Only build this driver if it was configured with --with-Stream-VFD */