Skip to content

Commit 6edac6a

Browse files
committed
Merge pull request #1927 from gonzoua/freebsd
2 parents 9674182 + 12dd075 commit 6edac6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/private/SwiftPrivateLibcExtras/Subprocess.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public func spawnChild(args: [String])
141141
}
142142

143143
internal func _make_posix_spawn_file_actions_t() -> posix_spawn_file_actions_t {
144-
#if os(Linux) || os(FreeBSD)
144+
#if os(Linux)
145145
return posix_spawn_file_actions_t()
146146
#else
147147
return nil

stdlib/private/SwiftPrivatePthreadExtras/SwiftPrivatePthreadExtras.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public func _stdlib_pthread_create_block<Argument, Result>(
8282
}
8383

8484
internal func _make_pthread_t() -> pthread_t {
85-
#if os(Linux) || os(FreeBSD)
85+
#if os(Linux)
8686
return pthread_t()
8787
#else
8888
return nil

0 commit comments

Comments
 (0)