aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llapp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llapp.cpp')
-rw-r--r--linden/indra/llcommon/llapp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/llcommon/llapp.cpp b/linden/indra/llcommon/llapp.cpp
index 42d9050..f48ff8f 100644
--- a/linden/indra/llcommon/llapp.cpp
+++ b/linden/indra/llcommon/llapp.cpp
@@ -30,9 +30,11 @@
30 30
31#include "llcommon.h" 31#include "llcommon.h"
32#include "llapr.h" 32#include "llapr.h"
33#include "llerrorcontrol.h"
33#include "llerrorthread.h" 34#include "llerrorthread.h"
34#include "llframetimer.h" 35#include "llframetimer.h"
35#include "llmemory.h" 36#include "llmemory.h"
37#include "lltimer.h"
36 38
37// 39//
38// Signal handling 40// Signal handling
@@ -193,10 +195,8 @@ LLSD LLApp::getOptionData(OptionPriority level)
193 195
194void LLApp::stepFrame() 196void LLApp::stepFrame()
195{ 197{
196 // Update the static frame timer.
197 LLFrameTimer::updateFrameTime(); 198 LLFrameTimer::updateFrameTime();
198 199 LLEventTimer::updateClass();
199 // Run ready runnables
200 mRunner.run(); 200 mRunner.run();
201} 201}
202 202
@@ -563,7 +563,7 @@ void default_unix_signal_handler(int signum, siginfo_t *info, void *)
563 else 563 else
564 { 564 {
565 // Don't log anything, even errors - this is because this signal could happen anywhere. 565 // Don't log anything, even errors - this is because this signal could happen anywhere.
566 gErrorStream.setLevel(LLErrorStream::NONE); 566 LLError::setDefaultLevel(LLError::LEVEL_NONE);
567 } 567 }
568 568
569 // Change the signal that we reraise to SIGABRT, so we generate a core dump. 569 // Change the signal that we reraise to SIGABRT, so we generate a core dump.