Patrice Arruda | 04157e1 | 2020-12-16 11:21:37 -0800 | [diff] [blame^] | 1 | package proc |
2 | |||||
3 | import ( | ||||
4 | "android/soong/finder/fs" | ||||
5 | ) | ||||
6 | |||||
7 | // NewProcStatus returns a zero filled value of ProcStatus as it | ||||
8 | // is not supported for darwin distribution based. | ||||
9 | func NewProcStatus(pid int, _ fs.FileSystem) (*ProcStatus, error) { | ||||
10 | return &ProcStatus{}, nil | ||||
11 | } |