Skip to content

Commit

Permalink
Update process.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
PallHaraldsson committed Nov 7, 2024
1 parent 809921c commit c6c4f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/process.jl
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ function process_status(s::Process)
return process_running(s) ? "ProcessRunning" :
process_signaled(s) ? "ProcessSignaled(" * string(s.termsignal) * ")" :
process_exited(s) ? "ProcessExited(" * (Sys.iswindows() ? ("0x" * uppercase(string(s.exitcode, 16))) : string(s.exitcode)) * (
s.exitcode == 0xC0000139 ? " Hint: Could be a PATH problem related to e.g. libLLVM (i.e. a procedure entry point could not be located in the dynamic link library) )" : ")"
s.exitcode == 0xC0000139 ? " Hint: Could be a PATH problem)" : ")" # likely(?) related to libLLVM (i.e. a procedure entry point could not be located in the dynamic link library)
) :
error("process status error")
end
Expand Down

0 comments on commit c6c4f3f

Please sign in to comment.