swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: e1c01930bde504fbbe85133e81cae58962ee568c authored by Tim Besard on 22 September 2023, 13:22:31 UTC
Don't use swiftcc on RISC-V.
Tip revision: e1c0193
channel_threadpool.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

using Test
using Base.Threads

@testset "Task threadpools" begin
    c = Channel{Symbol}() do c; put!(c, threadpool(current_task())); end
    @test take!(c) === threadpool(current_task())
    c = Channel{Symbol}(spawn = true) do c; put!(c, threadpool(current_task())); end
    @test take!(c) === :default
    c = Channel{Symbol}(threadpool = :interactive) do c; put!(c, threadpool(current_task())); end
    @test take!(c) === :interactive
    @test_throws ArgumentError Channel{Symbol}(threadpool = :foo) do c; put!(c, :foo); end
end
back to top