Skip to content

Duplicate the Handle instead of the fd on Windows #2238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Foundation/FileHandle.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,17 @@ open class FileHandle : NSObject {

// Duplicate the file descriptor.
// Closing the file descriptor while Dispatch is monitoring it leads to undefined behavior; guard against that.
#if os(Windows)
var dupHandle: HANDLE?
if !DuplicateHandle(GetCurrentProcess(), handle, GetCurrentProcess(), &dupHandle,
/*dwDesiredAccess:*/0, /*bInheritHandle:*/true, DWORD(DUPLICATE_SAME_ACCESS)) {
fatalError("DuplicateHandleFailed: \(GetLastError())")
}

let fd = _open_osfhandle(intptr_t(bitPattern: dupHandle), 0)
#else
let fd = dup(fileDescriptor)
#endif
let source: DispatchSourceProtocol
if reading {
source = DispatchSource.makeReadSource(fileDescriptor: fd, queue: queue)
Expand Down