| 87 | } |
| 88 | |
| 89 | type priorityExecer struct { |
| 90 | binPath string |
| 91 | oomScore int |
| 92 | niceScore int |
| 93 | } |
| 94 | |
| 95 | func (e priorityExecer) CommandContext(ctx context.Context, cmd string, args ...string) *exec.Cmd { |
| 96 | cmd, args = e.agentExecCmd(cmd, args...) |
nothing calls this directly
no outgoing calls
no test coverage detected