Skip to content

Commit ecf10a2

Browse files
authored
Merge pull request #21893 from JuliaLang/yyc/threads/core-print
Make CoreIO thread-safer
2 parents a34fd51 + 84eeb40 commit ecf10a2

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

src/jl_uv.c

+14-3
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ JL_DLLEXPORT int jl_fs_write(int handle, const char *data, size_t len,
355355
int64_t offset)
356356
{
357357
jl_ptls_t ptls = jl_get_ptls_states();
358-
if (ptls->safe_restore)
358+
if (ptls->safe_restore || ptls->tid != 0)
359359
return write(handle, data, len);
360360
uv_fs_t req;
361361
uv_buf_t buf[1];
@@ -432,7 +432,7 @@ JL_DLLEXPORT void jl_uv_puts(uv_stream_t *stream, const char *str, size_t n)
432432
sizeof(((uv_stream_t*)0)->type) == sizeof(((ios_t*)0)->bm),
433433
"UV and ios layout mismatch");
434434

435-
uv_file fd = 0;
435+
uv_file fd = -1;
436436

437437
// Fallback for output during early initialisation...
438438
if (stream == (void*)STDOUT_FILENO || stream == (void*)STDERR_FILENO) {
@@ -443,7 +443,18 @@ JL_DLLEXPORT void jl_uv_puts(uv_stream_t *stream, const char *str, size_t n)
443443
fd = ((jl_uv_file_t*)stream)->file;
444444
}
445445

446-
if (fd) {
446+
// Hack to make CoreIO thread-safer
447+
jl_ptls_t ptls = jl_get_ptls_states();
448+
if (ptls->tid != 0) {
449+
if (stream == JL_STDOUT) {
450+
fd = STDOUT_FILENO;
451+
}
452+
else if (stream == JL_STDERR) {
453+
fd = STDERR_FILENO;
454+
}
455+
}
456+
457+
if (fd != -1) {
447458
// Write to file descriptor...
448459
jl_fs_write(fd, str, n, -1);
449460
}

0 commit comments

Comments
 (0)