From 9c90e0527d60069d5532a0ec4066ba6020415c03 Mon Sep 17 00:00:00 2001 From: ScottPJones Date: Fri, 19 Jun 2015 01:16:36 -0400 Subject: [PATCH] Update NEWS.md Use sublist in NEWS.md --- NEWS.md | 16 ++++++++++++++++ doc/manual/embedding.rst | 6 +++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index c1501879dbfea3..acf6ed6b2c525d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -409,6 +409,21 @@ Deprecated or removed * `start_timer` and `stop_timer` are replaced by `Timer` and `close`. + * The following internal julia C functions have been renamed, in order to prevent + potential naming conflicts with C libraries: ([#11741]) + + * `gc_wb*` -> `jl_gc_wb*` + + * `gc_queue_root` -> `jl_gc_queue_root` + + * `allocobj` -> `jl_gc_allocobj` + + * `alloc_[0-3]w` -> `jl_gc_alloc_*w` + + * `diff_gc_total_bytes` -> `jl_gc_diff_total_bytes` + + * `sync_gc_total_bytes` -> `jl_gc_sync_total_bytes` + Julia v0.3.0 Release Notes ========================== @@ -1462,3 +1477,4 @@ Too numerous to mention. [#11347]: https://github.com/JuliaLang/julia/issues/11347 [#11379]: https://github.com/JuliaLang/julia/issues/11379 [#11432]: https://github.com/JuliaLang/julia/issues/11432 +[#11741]: https://github.com/JuliaLang/julia/issues/11741 diff --git a/doc/manual/embedding.rst b/doc/manual/embedding.rst index 37e6085df50dc3..dd741bd879c611 100644 --- a/doc/manual/embedding.rst +++ b/doc/manual/embedding.rst @@ -195,9 +195,9 @@ Manipulating the Garbage Collector There are some functions to control the GC. In normal use cases, these should not be necessary. ========================= ============================================================================== -``void jl_gc_collect()`` Force a GC run -``void jl_gc_enable(0)`` Disable the GC -``void jl_gc_enable(1)`` Enable the GC +``void jl_gc_collect()`` Force a GC run +``int jl_gc_enable(0)`` Disable the GC +``int jl_gc_enable(1)`` Enable the GC ========================= ============================================================================== Working with Arrays