2016-03-25 23:38:00 +00:00
|
|
|
// +build linux freebsd solaris
|
2015-10-19 16:33:43 +00:00
|
|
|
|
|
|
|
package daemon
|
|
|
|
|
2015-11-12 19:55:17 +00:00
|
|
|
import "github.com/docker/docker/container"
|
|
|
|
|
2015-10-19 16:33:43 +00:00
|
|
|
// excludeByIsolation is a platform specific helper function to support PS
|
|
|
|
// filtering by Isolation. This is a Windows-only concept, so is a no-op on Unix.
|
2015-11-12 19:55:17 +00:00
|
|
|
func excludeByIsolation(container *container.Container, ctx *listContext) iterationAction {
|
2015-10-19 16:33:43 +00:00
|
|
|
return includeContainer
|
|
|
|
}
|