Skip to content

Commit 9cf039f

Browse files
committed
Julia v1.3 doesn't have Base.Threads.in_threaded_loop
1 parent ddb50c5 commit 9cf039f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/threadlocal.jl

+6-2
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,13 @@ Base.get!(x::ThreadLocal, default) = get!(() -> default, x)
127127
Base.isassigned(x::ThreadLocal) = isassigned(x.value, threadid())
128128

129129
function getallvalues(x::ThreadLocal)
130-
if !Base.Threads.in_threaded_loop[]
130+
@static if VERSION >= v"1.3.0-alpha.0"
131131
x.value
132132
else
133-
throw(InvalidStateException("Can not access thread local values across threads in multi-threaded code sections"))
133+
if !Base.Threads.in_threaded_loop[]
134+
x.value
135+
else
136+
throw(InvalidStateException("Can not access thread local values across threads in multi-threaded code sections"))
137+
end
134138
end
135139
end

0 commit comments

Comments
 (0)