Skip to content

Commit 478d57c

Browse files
committed
whoops
1 parent 05baba0 commit 478d57c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

agent/agentproc/syscaller_other.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ var errUnimplemented = xerrors.New("unimplemented")
1818
type nopSyscaller struct{}
1919

2020
func (nopSyscaller) SetPriority(pid int32, priority int) error {
21-
return errUnimplimented
21+
return errUnimplemented
2222
}
2323

2424
func (nopSyscaller) GetPriority(pid int32) (int, error) {
25-
return 0, errUnimplimented
25+
return 0, errUnimplemented
2626
}
2727

2828
func (nopSyscaller) Kill(pid int32, sig syscall.Signal) error {
29-
return errUnimplimented
29+
return errUnimplemented
3030
}

0 commit comments

Comments
 (0)