...

Source file src/github.com/Microsoft/hcsshim/pkg/go-runhcs/runhcs_pause.go

Documentation: github.com/Microsoft/hcsshim/pkg/go-runhcs

     1  //go:build windows
     2  
     3  package runhcs
     4  
     5  import (
     6  	"context"
     7  )
     8  
     9  // Pause suspends all processes inside the container.
    10  func (r *Runhcs) Pause(context context.Context, id string) error {
    11  	return r.runOrError(r.command(context, "pause", id))
    12  }
    13  

View as plain text