Skip to content

Commit

Permalink
Correctly state what jl_atexit_hook calls (#29833)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Apr 28, 2020
1 parent 01155e1 commit 5cb3f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/devdocs/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ the stack now rapidly unwinds back to `main()`.
## `jl_atexit_hook()`
`main()` calls [`jl_atexit_hook()`](https://github.com/JuliaLang/julia/blob/master/src/init.c).
This calls `_atexit` for each module, then calls [`jl_gc_run_all_finalizers()`](https://github.com/JuliaLang/julia/blob/master/src/gc.c)
This calls `Base._atexit`, then calls [`jl_gc_run_all_finalizers()`](https://github.com/JuliaLang/julia/blob/master/src/gc.c)
and cleans up libuv handles.
## `julia_save()`
Expand Down

2 comments on commit 5cb3f3f

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible issues were detected. A full report can be found here. cc @maleadt

Please sign in to comment.