https://github.com/JuliaLang/julia
Raw File
Tip revision: 7f8635f11cae5f3f592afcc7b55c8e0e23589c3d authored by Shuhei Kadowaki on 19 April 2024, 04:05:35 UTC
refactor `abstract_eval_statement_expr` (#54111)
Tip revision: 7f8635f
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("locks-mt.jl")

end
back to top