mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add lock in libcontainerd client AddProcess
Signed-off-by: allencloud <allen.sun@daocloud.io>
This commit is contained in:
parent
762556c705
commit
278273bc16
2 changed files with 3 additions and 2 deletions
|
@ -101,6 +101,7 @@ func (clnt *client) AddProcess(ctx context.Context, containerID, processFriendly
|
|||
clnt.unlock(containerID)
|
||||
|
||||
if err := clnt.backend.AttachStreams(processFriendlyName, *iopipe); err != nil {
|
||||
clnt.lock(containerID)
|
||||
return err
|
||||
}
|
||||
clnt.lock(containerID)
|
||||
|
|
|
@ -22,9 +22,9 @@ type Process struct {
|
|||
Capabilities []string `json:"capabilities,omitempty"`
|
||||
// Rlimits specifies rlimit options to apply to the process.
|
||||
Rlimits []specs.Rlimit `json:"rlimits,omitempty"`
|
||||
// ApparmorProfile specified the apparmor profile for the container.
|
||||
// ApparmorProfile specifies the apparmor profile for the container.
|
||||
ApparmorProfile *string `json:"apparmorProfile,omitempty"`
|
||||
// SelinuxProcessLabel specifies the selinux context that the container process is run as.
|
||||
// SelinuxLabel specifies the selinux context that the container process is run as.
|
||||
SelinuxLabel *string `json:"selinuxLabel,omitempty"`
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue