Skip to main content

Module exec

Module exec 

Source
Expand description

Exec-related protocol message payloads.

Structs§

ExecExited
Notification that a command has exited.
ExecFailed
Notification that a command failed to start (the user’s program never got to run). Distinct from ExecExited, which means the process ran and reported an exit code.
ExecRequest
Request to execute a command in the guest.
ExecResize
Request to resize the PTY of a running command.
ExecRlimit
A POSIX resource limit to apply to a spawned process.
ExecSignal
Request to send a signal to a running command.
ExecStarted
Confirmation that a command has been started.
ExecStderr
Stderr data from a running command.
ExecStdin
Stdin data sent to a running command.
ExecStdout
Stdout data from a running command.

Enums§

ExecFailureKind
Coarse classification of an ExecFailed cause. The CLI’s stage-to-hint mapper keys off this; the SDK exposes it directly for programmatic consumers.
RlimitResource
POSIX resource limit identifiers (maps to RLIMIT_* constants).