zrepl/internal/zfs/zfs_pipe.go
2024-10-18 19:21:17 +02:00

24 lines
414 B
Go

//go:build !linux
// +build !linux
package zfs
import (
"os"
"sync"
)
func getPipeCapacityHint(envvar string) int {
return 0 // not supported
}
var zfsPipeCapacityNotSupported sync.Once
func trySetPipeCapacity(p *os.File, capacity int) {
if debugEnabled && capacity != 0 {
zfsPipeCapacityNotSupported.Do(func() {
debug("trySetPipeCapacity error: OS does not support setting pipe capacity")
})
}
}