Skip to content

Commit

Permalink
move Thread support much earlier in bootstrapping
Browse files Browse the repository at this point in the history
(cherry picked from commit bbd4bcc)
ref #16204
  • Loading branch information
vtjnash authored and tkelman committed Aug 11, 2016
1 parent 25c23b7 commit 7db1cd9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
16 changes: 8 additions & 8 deletions base/sysimg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -154,21 +154,25 @@ include("show.jl")
include("base64.jl")
importall .Base64

# nullable types
include("nullable.jl")

# version
include("version.jl")

# system & environment
include("libc.jl")
using .Libc: getpid, gethostname, time
include("libdl.jl")
using .Libdl: DL_LOAD_PATH
include("env.jl")

# nullable types
include("nullable.jl")

# Scheduling
include("libuv.jl")
include("event.jl")
include("task.jl")
include("lock.jl")
include("threads.jl")

# I/O
include("stream.jl")
Expand Down Expand Up @@ -218,9 +222,6 @@ include("collections.jl")
include("sort.jl")
importall .Sort

# version
include("version.jl")

function deepcopy_internal end

# BigInts and BigFloats
Expand Down Expand Up @@ -343,8 +344,7 @@ import .Dates: Date, DateTime, now
include("sparse/sparse.jl")
importall .SparseArrays

# threads
include("threads.jl")
# worker threads
include("threadcall.jl")

# deprecated functions
Expand Down
1 change: 0 additions & 1 deletion base/threads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ include("atomics.jl")
include("locks.jl")

end

0 comments on commit 7db1cd9

Please sign in to comment.