// Package root contains root process implementation and internal | |
// interfaces and types used by the implementation. | |
package root | |
// Root is an interface to be implemented by a process with root level | |
// privileges. | |
type Root interface { | |
// Reset waits for the given deadline (in milliseconds) and then | |
// restars the host node machine. | |
Reset(Deadline uint64) (error) | |
} |