diff options
author | Robb Matzke <matzke@llnl.gov> | 2002-12-04 15:44:05 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 2002-12-04 15:44:05 (GMT) |
commit | b081991663dfa001eb39b2fbda153f2b2277b9bf (patch) | |
tree | 3a63dc2916241ccc105b6b9133d9f00f89fd3ba5 | |
parent | e9f828ecfb2de86cef4a7d60e8d76edfc1e0d893 (diff) | |
download | hdf5-b081991663dfa001eb39b2fbda153f2b2277b9bf.zip hdf5-b081991663dfa001eb39b2fbda153f2b2277b9bf.tar.gz hdf5-b081991663dfa001eb39b2fbda153f2b2277b9bf.tar.bz2 |
[svn-r6178] ./hdf5-devel/src/H5Epublic.h
Purpose:
New Feature; Optimization; Clean-up
(Merged from 1.4 branch)
Description:
There is no symbolic constant to pass to functions that take an
optional object ID for when the caller wants to indicate no object
ID. In the past the caller always passed a negative integer.
GPFS performs poorly.
The h5ls tool decides whether to list the file name in the output
based on a compile-time choice, which isn't always optimal at run
time.
Solution:
Added a symbolic constant H5I_INVALID_HID.
Added code to tell the mmfsd of GPFS to forego byte range token
prefetching.
h5ls decides whether to print the file name at runtime based on
the number of objects being listed.
Platforms tested:
SuSE Linux (arborea), gcc and mpich-1.2.4
SunOS (baldric), gcc
2002-12-03 22:51:43 Robb Matzke <matzke@arborea.spizella.com>
*: Added H5E_FCNTL minor error number.
-rw-r--r-- | src/H5Epublic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h index 014ff32..09e5af2 100644 --- a/src/H5Epublic.h +++ b/src/H5Epublic.h @@ -140,6 +140,7 @@ typedef enum H5E_minor_t { H5E_WRITEERROR, /*write failed */ H5E_CLOSEERROR, /*close failed */ H5E_OVERFLOW, /*address overflowed */ + H5E_FCNTL, /*file fcntl failed */ /* Function entry/exit interface errors */ H5E_CANTINIT, /*Can't initialize object */ |