Skip to content

Commit

Permalink
Fix the OpenBLAS checksum for Julia 1.10 (JuliaLang#54017)
Browse files Browse the repository at this point in the history
Closes JuliaLang#54015.

`diff -r` on the source tree for the original archive vs. the archive
that gets downloaded now shows no changes.
  • Loading branch information
kpamnany authored and Drvi committed Jun 7, 2024
1 parent 07cb65e commit 4300bf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/jl_uv.c
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,10 @@ JL_DLLEXPORT void jl_safe_printf(const char *fmt, ...)
va_end(args);

buf[999] = '\0';
if (jl_inside_signal_handler() && jl_sig_fd != 0) {
// order is important here: we want to ensure that the threading infra
// has been initialized before we start trying to print to the
// safe crash log file
if (jl_sig_fd != 0 && (jl_inside_signal_handler() || jl_inside_heartbeat_thread()) {
print_error_msg_as_json(buf);
}
if (write(STDERR_FILENO, buf, strlen(buf)) < 0) {
Expand Down

0 comments on commit 4300bf8

Please sign in to comment.