Skip to content

Commit 5e48e67

Browse files
authored
1 parent 76c0088 commit 5e48e67

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "object_store_ffi"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
edition = "2021"
55

66
[[bench]]

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ impl Request {
245245
extern "C" {
246246
fn jl_adopt_thread() -> i32;
247247
fn jl_gc_safe_enter() -> i32;
248+
fn jl_gc_disable_finalizers_internal() -> c_void;
248249
}
249250

250251
// This is used to configure all aspects of the underlying
@@ -778,6 +779,7 @@ pub extern "C" fn start(
778779
{
779780
unsafe { jl_adopt_thread() };
780781
unsafe { jl_gc_safe_enter() };
782+
unsafe { jl_gc_disable_finalizers_internal() };
781783
}
782784
});
783785

0 commit comments

Comments
 (0)