Signed-off-by: David Calavera <david.calavera@gmail.com> Upstream-commit: 839f73c3028629ac1dde6617d6466b98f2bde416 Component: engine
13 lines
416 B
Go
13 lines
416 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
// setPlatformSpecificExecProcessConfig sets platform-specific fields in the
|
|
// ProcessConfig structure. This is a no-op on Windows
|
|
func setPlatformSpecificExecProcessConfig(config *types.ExecConfig, container *container.Container, pc *execdriver.ProcessConfig) {
|
|
}
|