(t *kernel.Task, addr hostarch.Addr)
| 24 | ) |
| 25 | |
| 26 | func copyInPath(t *kernel.Task, addr hostarch.Addr) (fspath.Path, error) { |
| 27 | pathname, err := t.CopyInString(addr, linux.PATH_MAX) |
| 28 | if err != nil { |
| 29 | return fspath.Path{}, err |
| 30 | } |
| 31 | return fspath.Parse(pathname), nil |
| 32 | } |
| 33 | |
| 34 | type taskPathOperation struct { |
| 35 | pop vfs.PathOperation |
no test coverage detected
searching dependent graphs…