Skip to content

Commit

Permalink
Brings hash table IDs feature from develop/1.12 (#768)
Browse files Browse the repository at this point in the history
* Brings updated tid test from develop

* Adds empty H5Iint.c and H5Idbg.c files

* H5I renaming to match 1.12/develop

* Splits off H5I debug code to H5Idbg.c

* Splits internal H5I.c functionality to H5Iint.c

* Header cleanup

* More renaming cleanup to match develop/1.12

* Adds "save last ID" optimization

* Adds uthash.h

* Adds hash table IDs from develop/1.12

* Committing clang-format changes

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
derobins and github-actions[bot] authored Jun 18, 2021
1 parent 1e29bcb commit 2e80c9c
Show file tree
Hide file tree
Showing 11 changed files with 3,138 additions and 1,600 deletions.
3 changes: 3 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,8 @@
./src/H5HP.c
./src/H5HPprivate.h
./src/H5I.c
./src/H5Idbg.c
./src/H5Iint.c
./src/H5Imodule.h
./src/H5Ipkg.h
./src/H5Iprivate.h
Expand Down Expand Up @@ -1068,6 +1070,7 @@
./src/hdf5.h
./src/libhdf5.settings.in
./src/H5win32defs.h
./src/uthash.h

./test/AtomicWriterReader.txt
./test/H5srcdir.h
Expand Down
4 changes: 4 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ IDE_GENERATED_PROPERTIES ("H5HP" "${H5HP_HDRS}" "${H5HP_SOURCES}" )

set (H5I_SOURCES
${HDF5_SRC_DIR}/H5I.c
${HDF5_SRC_DIR}/H5Idbg.c
${HDF5_SRC_DIR}/H5Iint.c
${HDF5_SRC_DIR}/H5Itest.c
)
set (H5I_HDRS
Expand Down Expand Up @@ -904,6 +906,8 @@ set (H5_PRIVATE_HEADERS
${HDF5_SRC_DIR}/H5Zprivate.h

${HDF5_SRC_DIR}/H5win32defs.h

${HDF5_SRC_DIR}/uthash.h
)

set (H5_GENERATED_HEADERS
Expand Down
Loading

0 comments on commit 2e80c9c

Please sign in to comment.