diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-09-12 23:10:22 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-09-12 23:10:22 (GMT) |
commit | 543c958928c02caccbc823d6f849b27e91405b73 (patch) | |
tree | 2cadc11ba3cdfad6da450914ecba21d6ec8f2001 /src/H5Fprivate.h | |
parent | 965a4cd7c9a2339bd559a3d5fbbc14a957318da4 (diff) | |
download | hdf5-543c958928c02caccbc823d6f849b27e91405b73.zip hdf5-543c958928c02caccbc823d6f849b27e91405b73.tar.gz hdf5-543c958928c02caccbc823d6f849b27e91405b73.tar.bz2 |
[svn-r7471] Purpose:
Update
Description:
The F_open and F_flush functions had a lot of cruft in them. The
F_flush was being used as a way to allocate the superblock. The
F_open had a bunch of code in there to read and serialize the
superblock.
Solution:
Moved these out into their own functions.
Platforms tested:
Modi4 (parallel, Fortran)
Copper (parallel, Fortran)
Verbena (Fortran, C++)
Sol (Fortran)
Misc. update:
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 45d9fde..4f97e9a 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -43,9 +43,8 @@ typedef struct H5F_t H5F_t; */ #define H5F_FLUSH_NONE (0U) /* No flags specified */ #define H5F_FLUSH_INVALIDATE (1U << 0) /* Invalidate cached data */ -#define H5F_FLUSH_ALLOC_ONLY (1U << 1) /* Allocate space for user and super blocks */ -#define H5F_FLUSH_CLOSING (1U << 2) /* Closing the file */ -#define H5F_FLUSH_CLEAR_ONLY (1U << 3) /* Don't write, just clear dirty flags */ +#define H5F_FLUSH_CLOSING (1U << 1) /* Closing the file */ +#define H5F_FLUSH_CLEAR_ONLY (1U << 2) /* Don't write, just clear dirty flags */ /* * Encode and decode macros for file meta-data. |