Revision 2588d66c3354660426c313e268d0994b731367f9 authored by Jishnu Bhattacharya on 12 April 2024, 19:43:23 UTC, committed by Jishnu Bhattacharya on 12 April 2024, 19:43:23 UTC
1 parent 1ae41a2
Raw File
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