swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: a7e1ec0dc4519f9f196e4b7f13bae7e538872319 authored by KristofferC on 12 May 2023, 10:57:45 UTC
ensure zones are reallocated in new processes
Tip revision: a7e1ec0
threads.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

"""
Multithreading support.
"""
module Threads

global Condition # we'll define this later, make sure we don't import Base.Condition

include("threadingconstructs.jl")
include("atomics.jl")
include("locks-mt.jl")

end
back to top