Skip to content

Commit

Permalink
Update NEWS.md
Browse files Browse the repository at this point in the history
Use sublist in NEWS.md
  • Loading branch information
ScottPJones committed Jun 19, 2015
1 parent 04b58e0 commit 9c90e05
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
==========================

Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions doc/manual/embedding.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c90e05

Please sign in to comment.