mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
15 lines
429 B
Go
15 lines
429 B
Go
// +build linux,cgo,libdm_no_deferred_remove
|
|
|
|
package devicemapper // import "github.com/docker/docker/pkg/devicemapper"
|
|
|
|
// LibraryDeferredRemovalSupport tells if the feature is enabled in the build
|
|
const LibraryDeferredRemovalSupport = false
|
|
|
|
func dmTaskDeferredRemoveFct(task *cdmTask) int {
|
|
// Error. Nobody should be calling it.
|
|
return -1
|
|
}
|
|
|
|
func dmTaskGetInfoWithDeferredFct(task *cdmTask, info *Info) int {
|
|
return -1
|
|
}
|