github.com/olljanat/moby@v1.13.1/libcontainerd/process.go (about)

     1  package libcontainerd
     2  
     3  // processCommon are the platform common fields as part of the process structure
     4  // which keeps the state for the main container process, as well as any exec
     5  // processes.
     6  type processCommon struct {
     7  	client *client
     8  
     9  	// containerID is the Container ID
    10  	containerID string
    11  
    12  	// friendlyName is an identifier for the process (or `InitFriendlyName`
    13  	// for the first process)
    14  	friendlyName string
    15  
    16  	// systemPid is the PID of the main container process
    17  	systemPid uint32
    18  }