We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e38d01 commit 3ad36d8Copy full SHA for 3ad36d8
Sources/Subprocess/Platforms/Subprocess+Unix.swift
@@ -375,6 +375,13 @@ extension Configuration {
375
376
// MARK: - FileDescriptor extensions
377
extension FileDescriptor {
378
+ internal static func ssp_pipe() throws -> (
379
+ readEnd: FileDescriptor,
380
+ writeEnd: FileDescriptor
381
+ ) {
382
+ try pipe()
383
+ }
384
+
385
internal static func openDevNull(
386
withAcessMode mode: FileDescriptor.AccessMode
387
) throws -> FileDescriptor {
0 commit comments