Method
Mount
(src string, dest string, fstype string, flags uintptr, data string)
Source from the content-addressed store, hash-verified
| 186 | var _ mounter = &realMounter{} |
| 187 | |
| 188 | func (m *realMounter) Mount(src string, dest string, fstype string, flags uintptr, data string) error { |
| 189 | return syscall.Mount(src, dest, fstype, flags, data) |
| 190 | } |
| 191 | |
| 192 | func (m *realMounter) Unmount(tgt string, flags int) error { |
| 193 | return syscall.Unmount(tgt, flags) |
Callers
nothing calls this directly
Tested by
no test coverage detected