MCPcopy Create free account
hub / github.com/coder/envbuilder / Mount

Method Mount

internal/ebutil/remount.go:188–190  ·  view source on GitHub ↗
(src string, dest string, fstype string, flags uintptr, data string)

Source from the content-addressed store, hash-verified

186var _ mounter = &realMounter{}
187
188func (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
192func (m *realMounter) Unmount(tgt string, flags int) error {
193 return syscall.Unmount(tgt, flags)

Callers

nothing calls this directly

Calls 1

MountMethod · 0.65

Tested by

no test coverage detected