mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9c559e6d0b
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
15 lines
367 B
Go
15 lines
367 B
Go
// +build linux,libdm_no_deferred_remove
|
|
|
|
package devicemapper
|
|
|
|
// LibraryDeferredRemovalSupport is not supported when statically linked.
|
|
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
|
|
}
|