* commit '8ae9bfa1d9f642afcc11e12bda5b1eeb2c9b7510':
Modify H5VL initialization routines to initialize all VOL-managed object types. Modify H5VLwrap_register() to reject non-VOL-managed object types. Also fix overisights in h5trace.c from previous changes.
* commit '5b751543ca7be96a91cd2db55976188f9ddbace1':
Modify H5VL initialization routines to initialize all VOL-managed object types. Modify H5VLwrap_register() to reject non-VOL-managed object types. Also fix overisights in h5trace.c from previous changes.
* commit '44e4f16e1df69f4facc82bf7aaafaa16e9aee85f':
Revert and move declaration
Correct compile and test Windows errors
HDFFV-10979 cleanup global names
* commit 'f30381d33d9e179ec30a8b46c2db218f2c45d2c1':
Fix issues when using ONLY_SHARED_LIBS
Change defines to not conflict with windows
Correct assignment
Fix h5watch fault
Add missing include folder
Fix reference file
Correct testfile name
Remove program find - future rework
Fix compile error and add ref destroy to Java test
HDFFV-10876 Merge from develop
Remove unneeded flag overwrites
* commit '907a630019c9059eafb0e5af3aeb0f63f47d3d44':
Fix issues when using ONLY_SHARED_LIBS
Change defines to not conflict with windows
Correct assignment
Fix h5watch fault
Add missing include folder
Fix reference file
Correct testfile name
Remove program find - future rework
Fix compile error and add ref destroy to Java test
HDFFV-10876 Merge from develop
Remove unneeded flag overwrites
* commit '3eef4d575ebd23eeb54660e244e604e0159a0aec':
Latest date first in HISTORY-1_10_0-1_12_0.txt
Update HISTORY-1_10_0-1_12_0..txt with performance improvements
* commit '080b96fb25cd4752914f3b77f944d5982c8ab139':
Latest date first in HISTORY-1_10_0-1_12_0.txt
Update HISTORY-1_10_0-1_12_0..txt with performance improvements
* commit '1aea46ce671daf2828ac65d0b8551b369f497922':
Fix H5VL_token_t type and fix H5VL_loc_by_token to use H5VL_token_t *
Change hdset_reg_ref_t and H5R_ref_t from arrays of unsigned char to structs containing those arrays. Encapsulating the arrays in this way makes it easier to write and think about pointers to these types, casts to/from these types, etc.
H5R: fix H5Tconv to check for null references
Remove H5VL_NATIVE_FILE_GET_FILE_ID and add H5VL_OBJECT_GET_FILE
* commit '096ed7a14a6b4fe19ad9d3791e769f4a650c3042':
Modify H5Ssel_iter_get_seq_list() to accept iterators that have reached the end of iteration (returning zero sequences). Previously it could cause an assertion failure.
structs containing those arrays. Encapsulating the arrays in this way
makes it easier to write and think about pointers to these types, casts
to/from these types, etc.
An interesting side-effect that we probably should *not* rely on is
that the struct-encapsulation changes the alignment so that some GCC
warnings about casts that increase the alignment requirement of the
operand go away. Warnings like that have to be taken seriously: I will
add -Werror=cast-align to the default compiler flags so that they stop
the build quickly.
GCC warnings led me to some surprising casts in test/trefer.c. I found
that it was possible to make many simplifications after introducing the
struct-encapsulation that I described, above.
In test objcopy_ref `same_file` is assigned but never used. Delete it.