am: shorten shutdown timeout when lock is not held
This commit is contained in:
parent
bc4e58eb51
commit
b7523d6fa7
4 changed files with 41 additions and 13 deletions
|
@ -273,7 +273,8 @@ struct System::Impl {
|
|||
time_manager.Initialize();
|
||||
|
||||
is_powered_on = true;
|
||||
exit_lock = false;
|
||||
exit_locked = false;
|
||||
exit_requested = false;
|
||||
|
||||
microprofile_cpu[0] = MICROPROFILE_TOKEN(ARM_CPU0);
|
||||
microprofile_cpu[1] = MICROPROFILE_TOKEN(ARM_CPU1);
|
||||
|
@ -398,7 +399,8 @@ struct System::Impl {
|
|||
}
|
||||
|
||||
is_powered_on = false;
|
||||
exit_lock = false;
|
||||
exit_locked = false;
|
||||
exit_requested = false;
|
||||
|
||||
if (gpu_core != nullptr) {
|
||||
gpu_core->NotifyShutdown();
|
||||
|
@ -507,7 +509,8 @@ struct System::Impl {
|
|||
|
||||
CpuManager cpu_manager;
|
||||
std::atomic_bool is_powered_on{};
|
||||
bool exit_lock = false;
|
||||
bool exit_locked = false;
|
||||
bool exit_requested = false;
|
||||
|
||||
bool nvdec_active{};
|
||||
|
||||
|
@ -943,12 +946,20 @@ const Service::Time::TimeManager& System::GetTimeManager() const {
|
|||
return impl->time_manager;
|
||||
}
|
||||
|
||||
void System::SetExitLock(bool locked) {
|
||||
impl->exit_lock = locked;
|
||||
void System::SetExitLocked(bool locked) {
|
||||
impl->exit_locked = locked;
|
||||
}
|
||||
|
||||
bool System::GetExitLock() const {
|
||||
return impl->exit_lock;
|
||||
bool System::GetExitLocked() const {
|
||||
return impl->exit_locked;
|
||||
}
|
||||
|
||||
void System::SetExitRequested(bool requested) {
|
||||
impl->exit_requested = requested;
|
||||
}
|
||||
|
||||
bool System::GetExitRequested() const {
|
||||
return impl->exit_requested;
|
||||
}
|
||||
|
||||
void System::SetApplicationProcessBuildID(const CurrentBuildProcessID& id) {
|
||||
|
|
|
@ -412,8 +412,11 @@ public:
|
|||
/// Gets an immutable reference to the Room Network.
|
||||
[[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const;
|
||||
|
||||
void SetExitLock(bool locked);
|
||||
[[nodiscard]] bool GetExitLock() const;
|
||||
void SetExitLocked(bool locked);
|
||||
bool GetExitLocked() const;
|
||||
|
||||
void SetExitRequested(bool requested);
|
||||
bool GetExitRequested() const;
|
||||
|
||||
void SetApplicationProcessBuildID(const CurrentBuildProcessID& id);
|
||||
[[nodiscard]] const CurrentBuildProcessID& GetApplicationProcessBuildID() const;
|
||||
|
|
|
@ -340,7 +340,7 @@ void ISelfController::Exit(HLERequestContext& ctx) {
|
|||
void ISelfController::LockExit(HLERequestContext& ctx) {
|
||||
LOG_DEBUG(Service_AM, "called");
|
||||
|
||||
system.SetExitLock(true);
|
||||
system.SetExitLocked(true);
|
||||
|
||||
IPC::ResponseBuilder rb{ctx, 2};
|
||||
rb.Push(ResultSuccess);
|
||||
|
@ -349,10 +349,14 @@ void ISelfController::LockExit(HLERequestContext& ctx) {
|
|||
void ISelfController::UnlockExit(HLERequestContext& ctx) {
|
||||
LOG_DEBUG(Service_AM, "called");
|
||||
|
||||
system.SetExitLock(false);
|
||||
system.SetExitLocked(false);
|
||||
|
||||
IPC::ResponseBuilder rb{ctx, 2};
|
||||
rb.Push(ResultSuccess);
|
||||
|
||||
if (system.GetExitRequested()) {
|
||||
system.Exit();
|
||||
}
|
||||
}
|
||||
|
||||
void ISelfController::EnterFatalSection(HLERequestContext& ctx) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue