File tree 1 file changed +6
-5
lines changed 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -194,11 +194,12 @@ Manipulating the Garbage Collector
194
194
195
195
There are some functions to control the GC. In normal use cases, these should not be necessary.
196
196
197
- ========================= ==============================================================================
198
- ``void jl_gc_collect() `` Force a GC run
199
- ``void jl_gc_enable(0) `` Disable the GC
200
- ``void jl_gc_enable(1) `` Enable the GC
201
- ========================= ==============================================================================
197
+ ======================= =====================================================
198
+ ``jl_gc_collect() `` Force a GC run
199
+ ``jl_gc_enable(0) `` Disable the GC, return previous state as int
200
+ ``jl_gc_enable(1) `` Enable the GC, return previous state as int
201
+ ``jl_gc_is_enabled() `` Return current state as int
202
+ ======================= =====================================================
202
203
203
204
Working with Arrays
204
205
========================
You can’t perform that action at this time.
0 commit comments