https://github.com/JuliaLang/julia
Raw File
Tip revision: 54b7be7578e3242a5566c04e220af7ce124e9831 authored by Simeon David Schaub on 25 October 2023, 08:09:55 UTC
fixup!
Tip revision: 54b7be7
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