summaryrefslogtreecommitdiff
path: root/indra/llcommon/llapp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon/llapp.cpp')
-rw-r--r--indra/llcommon/llapp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp
index 87e7016f39..fe5587365c 100644
--- a/indra/llcommon/llapp.cpp
+++ b/indra/llcommon/llapp.cpp
@@ -11,9 +11,11 @@
#include "llcommon.h"
#include "llapr.h"
+#include "llerrorcontrol.h"
#include "llerrorthread.h"
#include "llframetimer.h"
#include "llmemory.h"
+#include "lltimer.h"
//
// Signal handling
@@ -174,10 +176,8 @@ LLSD LLApp::getOptionData(OptionPriority level)
void LLApp::stepFrame()
{
- // Update the static frame timer.
LLFrameTimer::updateFrameTime();
-
- // Run ready runnables
+ LLEventTimer::updateClass();
mRunner.run();
}
@@ -544,7 +544,7 @@ void default_unix_signal_handler(int signum, siginfo_t *info, void *)
else
{
// Don't log anything, even errors - this is because this signal could happen anywhere.
- gErrorStream.setLevel(LLErrorStream::NONE);
+ LLError::setDefaultLevel(LLError::LEVEL_NONE);
}
// Change the signal that we reraise to SIGABRT, so we generate a core dump.