Skip to content

Commit

Permalink
libdl.jl: clarification on jl-side RTLD defs
Browse files Browse the repository at this point in the history
  • Loading branch information
ihnorton committed Sep 25, 2016
1 parent 11b06ed commit de0833f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/libdl.jl
Expand Up @@ -18,7 +18,8 @@ if is_apple()
push!(DL_LOAD_PATH, "@loader_path")
end

# constants to match JL_RTLD_* in src/julia.h
# note: constants to match JL_RTLD_* in src/julia.h, translated
# to system-specific values by JL_RTLD macro in src/dlload.c
const RTLD_LOCAL = 0x00000001
const RTLD_GLOBAL = 0x00000002
const RTLD_LAZY = 0x00000004
Expand Down

2 comments on commit de0833f

@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 benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(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 benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @jrevels

Please sign in to comment.