diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-03-30 17:45:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-03-30 17:45:30 (GMT) |
commit | f8fa1029b7e056cc068583d5f08d788aa57e3635 (patch) | |
tree | 8f209b41c99651962e067a75364ce09cd3120659 /src/H5ACprivate.h | |
parent | 383f266ef1df526ea3ebeadd1b49099361ada7a9 (diff) | |
download | hdf5-f8fa1029b7e056cc068583d5f08d788aa57e3635.zip hdf5-f8fa1029b7e056cc068583d5f08d788aa57e3635.tar.gz hdf5-f8fa1029b7e056cc068583d5f08d788aa57e3635.tar.bz2 |
[svn-r16625] Description:
Add mechanism for querying if an entry in the metadata cache is the
parent or child in a flush dependency relationship.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Diffstat (limited to 'src/H5ACprivate.h')
-rw-r--r-- | src/H5ACprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5ACprivate.h b/src/H5ACprivate.h index b8de0c9..b84142a 100644 --- a/src/H5ACprivate.h +++ b/src/H5ACprivate.h @@ -266,6 +266,8 @@ extern hid_t H5AC_ind_dxpl_id; #define H5AC_ES__IS_DIRTY 0x0002 #define H5AC_ES__IS_PROTECTED 0x0004 #define H5AC_ES__IS_PINNED 0x0008 +#define H5AC_ES__IS_FLUSH_DEP_PARENT 0x0010 +#define H5AC_ES__IS_FLUSH_DEP_CHILD 0x0020 /* external function declarations: */ |