File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,21 @@ import (
8
8
)
9
9
10
10
func (p * Process ) SetOOMAdj (score int ) error {
11
- return errUnimplimented
11
+ return errUnimplemented
12
12
}
13
13
14
14
func (p * Process ) Niceness (sc Syscaller ) (int , error ) {
15
- return 0 , errUnimplimented
15
+ return 0 , errUnimplemented
16
16
}
17
17
18
18
func (p * Process ) SetNiceness (sc Syscaller , score int ) error {
19
- return errUnimplimented
19
+ return errUnimplemented
20
20
}
21
21
22
22
func (p * Process ) Name () string {
23
23
return ""
24
24
}
25
25
26
26
func List (fs afero.Fs , syscaller Syscaller ) ([]* Process , error ) {
27
- return nil , errUnimplimented
27
+ return nil , errUnimplemented
28
28
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ func NewSyscaller() Syscaller {
13
13
return nopSyscaller {}
14
14
}
15
15
16
- var errUnimplimented = xerrors .New ("unimplemented" )
16
+ var errUnimplemented = xerrors .New ("unimplemented" )
17
17
18
18
type nopSyscaller struct {}
19
19
You can’t perform that action at this time.
0 commit comments