mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
15 lines
205 B
Go
15 lines
205 B
Go
package process
|
|
|
|
var (
|
|
UnknownProcess = &Process{
|
|
UserID: -1,
|
|
UserName: "Unknown",
|
|
Pid: -1,
|
|
ParentPid: -1,
|
|
Name: "Unknown Processes",
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
UnknownProcess.Save()
|
|
}
|