blob: f1aee1abccebd14f7d482d916c3c465169f99613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//go:build linux && cgo && !libdm_dlsym_deferred_remove && libdm_no_deferred_remove
// +build linux,cgo,!libdm_dlsym_deferred_remove,libdm_no_deferred_remove
package devicemapper // import "github.com/docker/docker/pkg/devicemapper"
// LibraryDeferredRemovalSupport tells if the feature is supported by the
// current Docker invocation.
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
}
|