We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45da8d0 commit 4fdfdf1Copy full SHA for 4fdfdf1
CHANGELOG.md
@@ -71,6 +71,7 @@
71
are now generic over size only: `FixedAscii<N>` and `FixedUnicode<N>`.
72
- The version of `hdf5` built in `hdf5-src` has been updated from `1.10.6` to `1.10.7`.
73
- The `zlib` dependency is no longer included with `default-features`.
74
+- `hdf5` no longer calls `H5close` automatically on program exit.
75
76
## 0.7.1
77
src/globals.rs
@@ -19,6 +19,8 @@ use crate::internal_prelude::*;
19
lazy_static! {
20
static ref LIBRARY_INIT: () = {
21
h5lock!({
22
+ // Ensure hdf5 does not invalidate handles which might
23
+ // still be live on other threads on program exit
24
::hdf5_sys::h5::H5dont_atexit();
25
::hdf5_sys::h5::H5open();
26
});
0 commit comments