Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit 3aa965b

Browse files
committed
fix JuliaLang#6375 (corrupted output while printing to a terminal)
Due to recent changes in libuv, TTY writes are now non-blocking.
1 parent 8e8a890 commit 3aa965b

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

base/stream.jl

-14
Original file line numberDiff line numberDiff line change
@@ -713,20 +713,6 @@ function _uv_hook_writecb(s::AsyncStream, req::Ptr{Void}, status::Int32)
713713
nothing
714714
end
715715

716-
# Do not task-block TTY methods. These writes are process-blocking anyway, so we use the non-copying versions
717-
write(s::TTY, b::Uint8) = @uv_write 1 ccall(:jl_putc_copy, Int32, (Uint8, Ptr{Void}, Ptr{Void}, Ptr{Void}), b, handle(s), uvw, uv_jl_writecb::Ptr{Void})
718-
write(s::TTY, c::Char) = @uv_write utf8sizeof(c) ccall(:jl_pututf8_copy, Int32, (Ptr{Void},Uint32, Ptr{Void}, Ptr{Void}), handle(s), c, uvw, uv_jl_writecb::Ptr{Void})
719-
function write{T}(s::TTY, a::Array{T})
720-
if isbits(T)
721-
n = uint(length(a)*sizeof(T))
722-
@uv_write n ccall(:jl_write_no_copy, Int32, (Ptr{Void}, Ptr{Void}, Uint, Ptr{Void}, Ptr{Void}), handle(s), a, n, uvw, uv_jl_writecb::Ptr{Void})
723-
else
724-
check_open(s)
725-
invoke(write,(IO,Array),s,a)
726-
end
727-
end
728-
write(s::TTY, p::Ptr, nb::Integer) = @uv_write nb ccall(:jl_write_no_copy, Int32, (Ptr{Void}, Ptr{Void}, Uint, Ptr{Void}, Ptr{Void}), handle(s), p, nb, uvw, uv_jl_writecb::Ptr{Void})
729-
730716
function write(s::AsyncStream, b::Uint8)
731717
@uv_write 1 ccall(:jl_putc_copy, Int32, (Uint8, Ptr{Void}, Ptr{Void}, Ptr{Void}), b, handle(s), uvw, uv_jl_writecb_task::Ptr{Void})
732718
ct = current_task()

0 commit comments

Comments
 (0)