summaryrefslogtreecommitdiff
path: root/indra/newview/llappviewer.h
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-04-02 12:57:09 -0400
committerOz Linden <oz@lindenlab.com>2013-04-02 12:57:09 -0400
commitce0dbbd8a543a32e033eb15888259151ca113539 (patch)
tree1d5713dd1cf73826f07737dd248d3e51aa1f1b57 /indra/newview/llappviewer.h
parent060a76daa695e8619db48bf940ea3997668702d0 (diff)
Add reporting of last_exec_duration
(and clean up logic around multiple instances)
Diffstat (limited to 'indra/newview/llappviewer.h')
-rw-r--r--indra/newview/llappviewer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h
index c8fb023150..84cfcf6922 100644
--- a/indra/newview/llappviewer.h
+++ b/indra/newview/llappviewer.h
@@ -183,7 +183,7 @@ public:
protected:
virtual bool initWindow(); // Initialize the viewer's window.
- virtual bool initLogging(); // Initialize log files, logging system, return false on failure.
+ virtual void initLogging(); // Initialize log files, logging system
virtual void initConsole() {}; // Initialize OS level debugging console.
virtual bool initHardwareTest() { return true; } // A false result indicates the app should quit.
virtual bool initSLURLHandler();
@@ -323,6 +323,7 @@ typedef enum
} eLastExecEvent;
extern eLastExecEvent gLastExecEvent; // llstartup
+extern S32 gLastExecDuration; ///< the duration of the previous run in seconds (<0 indicates unknown)
extern const char* gPlatform;