summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-12-29 18:42:50 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-12-29 18:42:50 (GMT)
commit1639542351e530163d16064b186778a18d5262c2 (patch)
treef2a1d94a6f6ad9a5d7d1a4f8687a98c698559e9a /tools
parent805c29431c73880991e5823f2ba82bbeca02201e (diff)
downloadhdf5-1639542351e530163d16064b186778a18d5262c2.zip
hdf5-1639542351e530163d16064b186778a18d5262c2.tar.gz
hdf5-1639542351e530163d16064b186778a18d5262c2.tar.bz2
[svn-r28744] Description:
Bring r28742 from trunk, adjusting to shadow B-tree nodes for SWMR: Add 'update' operation to v2 B-trees, which will insert a new record, or modify an existing one, depending on if the record exists or not. Tested on: MacOSX/64 10.11.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'tools')
-rw-r--r--tools/misc/h5debug.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c
index aac14db..b4cbfee 100644
--- a/tools/misc/h5debug.c
+++ b/tools/misc/h5debug.c
@@ -129,6 +129,10 @@ get_H5B2_class(const uint8_t *sig)
cls = H5D_BT2_FILT;
break;
+ case H5B2_TEST2_ID:
+ cls = H5B2_TEST2;
+ break;
+
case H5B2_NUM_BTREE_ID:
default:
HDfprintf(stderr, "Unknown v2 B-tree subtype %u\n", (unsigned)(subtype));