diff options
Diffstat (limited to 'init/reboot_utils.h')
-rw-r--r-- | init/reboot_utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init/reboot_utils.h b/init/reboot_utils.h index a0023b9bb..09e87ef67 100644 --- a/init/reboot_utils.h +++ b/init/reboot_utils.h @@ -29,7 +29,8 @@ void SetFatalRebootTarget(const std::optional<std::string>& reboot_target = std: // so if any of the attempts to determine this fail, it will still return true. bool IsRebootCapable(); // This is a wrapper around the actual reboot calls. -void __attribute__((noreturn)) RebootSystem(unsigned int cmd, const std::string& reboot_target); +void __attribute__((noreturn)) RebootSystem(unsigned int cmd, const std::string& reboot_target, + const std::string& reboot_reason = ""); void __attribute__((noreturn)) InitFatalReboot(int signal_number); void InstallRebootSignalHandlers(); |