2015-09-23 04:56:29 +00:00
|
|
|
package allocdir
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Hardlinks the shared directory. As a side-effect the shared directory and
|
|
|
|
// task directory must be on the same filesystem.
|
2015-09-25 23:49:14 +00:00
|
|
|
func (d *AllocDir) mountSharedDir(dir string) error {
|
|
|
|
return syscall.Link(d.SharedDir, dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *AllocDir) unmountSharedDir(dir string) error {
|
|
|
|
return syscall.Unlink(dir)
|
2015-09-23 04:56:29 +00:00
|
|
|
}
|