https://github.com/JuliaLang/julia
Raw File
Tip revision: 8ccf78ba24aa42e949233aba65c89f48aac08a01 authored by Nathan Daly on 10 April 2024, 16:21:08 UTC
Better codegen for specialized `in(v, ::Tuple)`
Tip revision: 8ccf78b
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