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.
StandardIO.resize()
1 parent 2dbba78 commit 57ad7adCopy full SHA for 57ad7ad
vminitd/Sources/vminitd/StandardIO.swift
@@ -14,6 +14,7 @@
14
// limitations under the License.
15
//===----------------------------------------------------------------------===//
16
17
+import ContainerizationError
18
import ContainerizationOS
19
import Foundation
20
import Logging
@@ -119,8 +120,9 @@ final class StandardIO: ManagedProcess.IO & Sendable {
119
120
}
121
122
- // NOP
123
- func resize(size: Terminal.Size) throws {}
+ func resize(size: Terminal.Size) throws {
124
+ throw ContainerizationError(.unsupported, message: "resize not supported")
125
+ }
126
127
func close() throws {
128
self.state.withLock {
0 commit comments