update procfs to v0.0.2 (#1376)
Signed-off-by: Paul Gier <pgier@redhat.com>
This commit is contained in:
parent
0759c0ac01
commit
2bc133cd48
33 changed files with 167 additions and 172 deletions
6
vendor/github.com/prometheus/procfs/nfs/nfs.go
generated
vendored
6
vendor/github.com/prometheus/procfs/nfs/nfs.go
generated
vendored
|
|
@ -275,6 +275,12 @@ type FS struct {
|
|||
proc *fs.FS
|
||||
}
|
||||
|
||||
// NewDefaultFS returns a new FS mounted under the default mountPoint. It will error
|
||||
// if the mount point can't be read.
|
||||
func NewDefaultFS() (FS, error) {
|
||||
return NewFS(fs.DefaultProcMountPoint)
|
||||
}
|
||||
|
||||
// NewFS returns a new FS mounted under the given mountPoint. It will error
|
||||
// if the mount point can't be read.
|
||||
func NewFS(mountPoint string) (FS, error) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue