process.go 494 B

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