diff options
Diffstat (limited to 'init/reboot.cpp')
-rw-r--r-- | init/reboot.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/init/reboot.cpp b/init/reboot.cpp index cdfc69801..df7912f96 100644 --- a/init/reboot.cpp +++ b/init/reboot.cpp @@ -53,6 +53,9 @@ using android::base::StringPrintf; +namespace android { +namespace init { + // represents umount status during reboot / shutdown. enum UmountStat { /* umount succeeded. */ @@ -468,3 +471,6 @@ bool HandlePowerctlMessage(const std::string& command) { DoReboot(cmd, command, reboot_target, run_fsck); return true; } + +} // namespace init +} // namespace android |