swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: cea37149c44a143c9f939ca914409060e3175250 authored by Valentin Churavy on 19 April 2018, 21:04:25 UTC
[WIP] add PPC64 support to signals-unix.c
Tip revision: cea3714
LocalModule.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

__precompile__()
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