...

Source file src/github.com/cybertec-postgresql/pgwatch/v3/internal/reaper/psutil_darwin.go

Documentation: github.com/cybertec-postgresql/pgwatch/v3/internal/reaper

     1  package reaper
     2  
     3  import "errors"
     4  
     5  var ErrNotImplemented = errors.New("not implemented")
     6  
     7  func GetPathUnderlyingDeviceID(path string) (uint64, error) {
     8  	return 0, ErrNotImplemented
     9  }
    10