https://github.com/JuliaLang/julia
Raw File
Tip revision: 2853c44117fe36c40aa82e6abafe87fd0a555545 authored by Jacob Quinn on 25 January 2023, 19:26:30 UTC
Add ability to set keepalive on TCP sockets via keyword arg to connect
Tip revision: 2853c44
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("atomics.jl")
include("locks-mt.jl")

end
back to top