diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-11-27 16:07:11 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-11-27 16:07:11 (GMT) |
commit | b52107a42a19c26894d18f88cab801749c32c34f (patch) | |
tree | edde8937cc8aa2b2e12ca11a7592f71eca9ed000 /src/H5Eterm.h | |
parent | a27b3f81f007b5f60cccd0f861c2d17911b3389a (diff) | |
download | hdf5-b52107a42a19c26894d18f88cab801749c32c34f.zip hdf5-b52107a42a19c26894d18f88cab801749c32c34f.tar.gz hdf5-b52107a42a19c26894d18f88cab801749c32c34f.tar.bz2 |
[svn-r9580] Purpose:
Add new internal data structure
Description:
Add an implementation of skip lists to the library (see comment in
src/H5SL.c for references to the papers describing them) as a potential
replacement for our current threaded, balanced binary tree container.
Skip lists are much simpler to implement and should be faster to use.
Also, added new error codes to release branch, so bump the minor version
number to indicate that the library is no longer perfectly compatible with
the 1.6.3 release.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Solaris 2.7 (arabica)
Too minor to require further testing (the skip lists aren't actually
used by any library code yet)
Diffstat (limited to 'src/H5Eterm.h')
-rw-r--r-- | src/H5Eterm.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/H5Eterm.h b/src/H5Eterm.h index 4f5bda9..49db49d 100644 --- a/src/H5Eterm.h +++ b/src/H5Eterm.h @@ -42,6 +42,7 @@ H5E_TBBT_g= H5E_ATOM_g= H5E_ATTR_g= H5E_IO_g= +H5E_SLIST_g= H5E_EFL_g= H5E_TST_g= H5E_ARGS_g= @@ -52,6 +53,9 @@ H5E_CACHE_g= (-1); /* Reset minor error IDs */ +/* Threaded, balanced binary tree errors */ +H5E_CANTMAKETREE_g= + /* Generic low-level file I/O errors */ H5E_SEEKERROR_g= H5E_READERROR_g= @@ -70,6 +74,9 @@ H5E_CANTUNLOCK_g= H5E_CANTGC_g= H5E_CANTGETSIZE_g= +/* Heap errors */ +H5E_CANTRESTORE_g= + /* Function entry/exit interface errors */ H5E_CANTINIT_g= H5E_ALREADYINIT_g= @@ -88,7 +95,6 @@ H5E_BADMESG_g= H5E_CANTDELETE_g= /* FPHDF5 errors */ -H5E_CANTMAKETREE_g= H5E_CANTRECV_g= H5E_CANTSENDMDATA_g= H5E_CANTCHANGE_g= |