fix typos
Signed-off-by: bin liu <liubin0329@gmail.com>
This commit is contained in:
parent
a8c73b6959
commit
004efe5991
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ import (
|
||||||
"unsafe"
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewConsole returns an initalized console that can be used within a container by copying bytes
|
// NewConsole returns an initialized console that can be used within a container by copying bytes
|
||||||
// from the master side to the slave that is attached as the tty for the container's init process.
|
// from the master side to the slave that is attached as the tty for the container's init process.
|
||||||
func newConsole(uid, gid int) (*os.File, string, error) {
|
func newConsole(uid, gid int) (*os.File, string, error) {
|
||||||
master, err := os.OpenFile("/dev/ptmx", syscall.O_RDWR|syscall.O_NOCTTY|syscall.O_CLOEXEC, 0)
|
master, err := os.OpenFile("/dev/ptmx", syscall.O_RDWR|syscall.O_NOCTTY|syscall.O_CLOEXEC, 0)
|
||||||
|
|
|
@ -11,7 +11,7 @@ var (
|
||||||
// ErrContainerExited is returned when access to an exited
|
// ErrContainerExited is returned when access to an exited
|
||||||
// container is attempted
|
// container is attempted
|
||||||
ErrContainerExited = errors.New("containerd: container has exited")
|
ErrContainerExited = errors.New("containerd: container has exited")
|
||||||
// ErrProcessNotExited is returned when trying to retrive the exit
|
// ErrProcessNotExited is returned when trying to retrieve the exit
|
||||||
// status of an alive process
|
// status of an alive process
|
||||||
ErrProcessNotExited = errors.New("containerd: process has not exited")
|
ErrProcessNotExited = errors.New("containerd: process has not exited")
|
||||||
// ErrContainerNotStarted is returned when a container fails to
|
// ErrContainerNotStarted is returned when a container fails to
|
||||||
|
|
Loading…
Reference in a new issue