10 lines
208 B
Go
10 lines
208 B
Go
package process
|
|
|
|
// SystemProcessID is the PID of the System/Kernel itself.
|
|
const SystemProcessID = 0
|
|
|
|
// specialOSInit does special OS specific Process initialization.
|
|
func (p *Process) specialOSInit() {
|
|
|
|
}
|