diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-02 14:42:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 14:42:35 -0400 |
commit | 2c5e8e6d408f0e060da4665444132c4b8bbf7759 (patch) | |
tree | 2957a8ccab9c4d2fc6ffd57fc81afce158bcceab /src/core/core.h | |
parent | 84eb1cdb654b6724f69cfeeb4546d4ee6ff860f5 (diff) | |
parent | b7523d6fa77a963409d5fbfec4879c22a6ef9f3f (diff) |
Merge pull request #11384 from liamwhite/am-shutdown
am: shorten shutdown timeout when lock is not held
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index c70ea1965..a9ff9315e 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -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; |