diff options
author | Richard Linden <none@none> | 2010-10-13 11:57:38 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-10-13 11:57:38 -0700 |
commit | 0732b48be9c6378c31515ed92d29101e3743c8c9 (patch) | |
tree | ae24d2f52e6829eaaab50ce73213cf6b310bd772 /indra/newview/llappviewer.h | |
parent | 867570132f3ff2dc102561e0d0950b0134dd3e53 (diff) |
improved fastquit logic which should reliably disconnect viewer from sim
Diffstat (limited to 'indra/newview/llappviewer.h')
-rw-r--r-- | indra/newview/llappviewer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h index 0e7dbb738b..b2374a3426 100644 --- a/indra/newview/llappviewer.h +++ b/indra/newview/llappviewer.h @@ -65,14 +65,14 @@ public: virtual bool mainLoop(); // Override for the application main loop. Needs to at least gracefully notice the QUITTING state and exit. // Application control + void flushVFSIO(); // waits for vfs transfers to complete void forceQuit(); // Puts the viewer into 'shutting down without error' mode. - void fastQuit(); // Shuts down the viewer immediately after sending a logout message + void fastQuit(S32 error_code = 0); // Shuts down the viewer immediately after sending a logout message void requestQuit(); // Request a quit. A kinder, gentler quit. void userQuit(); // The users asks to quit. Confirm, then requestQuit() void earlyExit(const std::string& name, const LLSD& substitutions = LLSD()); // Display an error dialog and forcibly quit. void earlyExitNoNotify(); // Do not display error dialog then forcibly quit. - void forceExit(S32 arg); // exit() immediately (after some cleanup). void abortQuit(); // Called to abort a quit request. bool quitRequested() { return mQuitRequested; } |