Skip to content

Commit 57ad9b5

Browse files
committed
Dup FDs on startup rather than closing them later
Together with the previous commits this does fix #3823
1 parent 93578d7 commit 57ad9b5

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

base/stream.jl

-5
Original file line numberDiff line numberDiff line change
@@ -849,11 +849,6 @@ for (x,writable,unix_fd,c_symbol) in ((:STDIN,false,0,:jl_uv_stdin),(:STDOUT,tru
849849
@eval begin
850850
function ($f)(handle::AsyncStream)
851851
global $x
852-
# We're about to dup the file descriptor over, so there's nothing else we can do
853-
# Windows is different since the UV Stream has a handle not a file descriptor
854-
@unix_only if isa($x,AsyncStream) && _fd($x) == RawFD($unix_fd)
855-
ccall(:jl_forceclose_uv,Void,(Ptr{Void},),($x).handle)
856-
end
857852
@windows? ccall(:SetStdHandle,stdcall,Int32,(Uint32,Ptr{Void}),$(-10-unix_fd),_fd(handle).handle) : dup(_fd(handle), RawFD($unix_fd))
858853
unsafe_store!(cglobal($(Expr(:quote,c_symbol)),Ptr{Void}),handle.handle)
859854
$x = handle

src/init.c

+7
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,13 @@ void *init_stdio_handle(uv_file fd,int readable)
447447
void *handle;
448448
uv_handle_type type = uv_guess_handle(fd);
449449
jl_uv_file_t *file;
450+
#ifndef _OS_WINDOWS_
451+
// Duplicate the file descritor so we can later dup it over if we want to redirect
452+
// STDIO without having to worry about closing the associated libuv object.
453+
// On windows however, libuv objects remember streams by their HANDLE, so this is
454+
// unnessecary.
455+
fd = dup(fd);
456+
#endif
450457
//printf("%d: %d -- %d\n", fd, type);
451458
switch(type)
452459
{

0 commit comments

Comments
 (0)