swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: 8fe082cee965883989b382bc9dd3434649377e4c authored by Jameson Nash on 01 February 2022, 19:49:18 UTC
llvm-cpufeatures: get TargetMachine from the MachineModuleInfoWrapperPass pass
Tip revision: 8fe082c
LocalModule.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

module LocalModule

using Distributed
export myapp

function myapp()
    p = addprocs(1)
    @everywhere p println("Taking over the world...")
    rmprocs(p)
    nothing
end

end
back to top