go-sandbox/run_program/file_set.go
2019-04-06 21:32:09 -04:00

18 lines
291 B
Go

package main
// fileSet stores the file permissions
type fileSet struct {
Set map[string]bool
SystemRoot bool
}
// getProcCwd gets the process CWD
func getProcCwd(pid int) string {
}
// absPath calculates the absolute path for a process
func absPath(pid int, path *string) {
}