Revision 9075731481a4ce0bccde0c9611b6695e6d0d0f57 authored by Jeff Bezanson on 31 October 2023, 11:18:35 UTC, committed by GitHub on 31 October 2023, 11:18:35 UTC
Restores the method whose removal was probably causing problems.
1 parent 6084a62
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