First implementation

This commit is contained in:
2019-12-14 11:56:22 +01:00
parent a13838dbc5
commit be6a9c6f73
1060 changed files with 326870 additions and 0 deletions

14
vendor/periph.io/x/periph/host/sysfs/sysfs_other.go generated vendored Normal file
View File

@@ -0,0 +1,14 @@
// Copyright 2016 The Periph Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
// +build !linux
package sysfs
const isLinux = false
func isErrBusy(err error) bool {
// This function is not used on non-linux.
return false
}