1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #8931 from vbatts/vbatts-mount_pid_mountinfo

pkg/mount: mountinfo from specified pid
This commit is contained in:
Alexandr Morozov 2014-11-07 12:04:52 -08:00
commit 349f67632f

View file

@ -1,3 +1,5 @@
// +build linux
package mount
import (
@ -72,3 +74,14 @@ func parseInfoFile(r io.Reader) ([]*MountInfo, error) {
}
return out, nil
}
// PidMountInfo collects the mounts for a specific Pid
func PidMountInfo(pid int) ([]*MountInfo, error) {
f, err := os.Open(fmt.Sprintf("/proc/%d/mountinfo", pid))
if err != nil {
return nil, err
}
defer f.Close()
return parseInfoFile(f)
}