safing-portmaster/process/process_default.go
2020-07-22 11:46:59 +02:00

13 lines
261 B
Go

//+build !windows,!linux
package process
// IsKernel returns whether the process is the Kernel.
func (p *Process) IsKernel() bool {
return p.Pid == 0
}
// specialOSInit does special OS specific Process initialization.
func (p *Process) specialOSInit() {
}