2018-05-30 17:02:30 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package fingerprint
|
|
|
|
|
|
|
|
// FindCgroupMountpointDir is used to find the cgroup mount point on a Linux
|
|
|
|
// system. Here it is a no-op implemtation
|
|
|
|
func FindCgroupMountpointDir() (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
2018-12-01 16:10:39 +00:00
|
|
|
func (f *CGroupFingerprint) Fingerprint(*FingerprintRequest, *FingerprintResponse) error {
|
2018-05-30 17:02:30 +00:00
|
|
|
return nil
|
|
|
|
}
|