diff options
author | Liam <byteslice@airmail.cc> | 2023-08-26 17:12:05 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-08-26 17:12:05 -0400 |
commit | b7523d6fa77a963409d5fbfec4879c22a6ef9f3f (patch) | |
tree | d9b7acc75eae4c216aeb39a3be6f3418fe3c894d /src/core/core.h | |
parent | bc4e58eb5180a1755d76a24ddc7684cc5d70f2b1 (diff) |
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 c70ea1965a..a9ff9315e3 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; |