safing-portmaster/process/process_linux.go
2018-08-13 14:14:27 +02:00

13 lines
199 B
Go

package process
func (m *Process) IsUser() bool {
return m.UserID >= 1000
}
func (m *Process) IsAdmin() bool {
return m.UserID >= 0
}
func (m *Process) IsSystem() bool {
return m.UserID == 0
}