blob: b8e635b30ea1b1c70e779f22b223847e9380ca03 [file] [log] [blame]
// 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)
}