diff options
author | simon <none@none> | 2013-05-09 13:21:22 -0700 |
---|---|---|
committer | simon <none@none> | 2013-05-09 13:21:22 -0700 |
commit | 8895e795763d14c3dae495b3648da3d4a52ba30a (patch) | |
tree | efdb765ff9c99ab179bf252aa0cee87e6ac410e7 /indra/newview/llappviewer.h | |
parent | 35f7a750836b72cb116e60b315ca32664911001b (diff) | |
parent | c7f7c4bc4d9155f5e9cd83265e189f689739da62 (diff) |
Merge downstream code / viewer-beta
Diffstat (limited to 'indra/newview/llappviewer.h')
-rwxr-xr-x[-rw-r--r--] | indra/newview/llappviewer.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h index 08039100b3..d3a8cf24d9 100644..100755 --- 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(); @@ -217,7 +217,9 @@ private: bool anotherInstanceRunning(); void initMarkerFile(); - + static void recordMarkerVersion(LLAPRFile& marker_file); + bool markerIsSameVersion(const std::string& marker_name) const; + void idle(); void idleShutdown(); // update avatar SLID and display name caches @@ -237,7 +239,7 @@ private: LLAPRFile mMarkerFile; // A file created to indicate the app is running. std::string mLogoutMarkerFileName; - apr_file_t* mLogoutMarkerFile; // A file created to indicate the app is running. + LLAPRFile mLogoutMarkerFile; // A file created to indicate the app is running. LLOSInfo mSysOSInfo; @@ -321,6 +323,9 @@ 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; extern U32 gFrameCount; extern U32 gForegroundFrameCount; |