mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
19 lines
494 B
Go
19 lines
494 B
Go
|
package libcontainerd
|
||
|
|
||
|
// processCommon are the platform common fields as part of the process structure
|
||
|
// which keeps the state for the main container process, as well as any exec
|
||
|
// processes.
|
||
|
type processCommon struct {
|
||
|
client *client
|
||
|
|
||
|
// containerID is the Container ID
|
||
|
containerID string
|
||
|
|
||
|
// friendlyName is an identifier for the process (or `InitFriendlyName`
|
||
|
// for the first process)
|
||
|
friendlyName string
|
||
|
|
||
|
// systemPid is the PID of the main container process
|
||
|
systemPid uint32
|
||
|
}
|