File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -145,10 +145,10 @@ extension Subprocess {
145
145
case fileDescriptor( FileDescriptor ? , Bool )
146
146
}
147
147
148
- let storage : Mutex < Storage >
148
+ let storage : LockedState < Storage >
149
149
150
150
internal init ( storage: Storage ) {
151
- self . storage = . init( storage)
151
+ self . storage = . init( initialState : storage)
152
152
}
153
153
154
154
internal func getReadFileDescriptor( ) -> FileDescriptor ? {
@@ -250,10 +250,10 @@ extension Subprocess {
250
250
case collected( Int , FileDescriptor ? , FileDescriptor ? )
251
251
}
252
252
253
- private let storage : Mutex < Storage >
253
+ private let storage : LockedState < Storage >
254
254
255
255
internal init ( storage: Storage ) {
256
- self . storage = . init( storage)
256
+ self . storage = . init( initialState : storage)
257
257
}
258
258
259
259
internal func getWriteFileDescriptor( ) -> FileDescriptor ? {
You can’t perform that action at this time.
0 commit comments