diff options
| author | simon <none@none> | 2013-05-29 14:42:19 -0700 |
|---|---|---|
| committer | simon <none@none> | 2013-05-29 14:42:19 -0700 |
| commit | 507ce0d84fc3e7717c7c9ae58dcdae7785936f65 (patch) | |
| tree | a7dde82693b2297a27024a00624c1ec9f81c2d0c /indra/newview/llappviewer.cpp | |
| parent | 473474b94969799d2835191072c5bca1b7d431d8 (diff) | |
| parent | 3698aece0d2b396b55b46189e8ea7ee02da9483b (diff) | |
Merge downstream code
Diffstat (limited to 'indra/newview/llappviewer.cpp')
| -rwxr-xr-x | indra/newview/llappviewer.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 8738829cae..de49fd54b4 100755 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -118,6 +118,7 @@ #include "llleap.h" #include "stringize.h" +#include "llcoros.h" // Third party library includes #include <boost/bind.hpp> @@ -756,6 +757,7 @@ bool LLAppViewer::init() //set the max heap size. initMaxHeapSize() ; + LLCoros::instance().setStackSize(gSavedSettings.getS32("CoroutineStackSize")); LLPrivateMemoryPoolManager::initClass((BOOL)gSavedSettings.getBOOL("MemoryPrivatePoolEnabled"), (U32)gSavedSettings.getU32("MemoryPrivatePoolSize")*1024*1024) ; @@ -2811,6 +2813,16 @@ bool LLAppViewer::initConfiguration() loadColorSettings(); + // Let anyone else who cares know that we've populated our settings + // variables. + for (LLControlGroup::key_iter ki(LLControlGroup::beginKeys()), kend(LLControlGroup::endKeys()); + ki != kend; ++ki) + { + // For each named instance of LLControlGroup, send an event saying + // we've initialized an LLControlGroup instance by that name. + LLEventPumps::instance().obtain("LLControlGroup").post(LLSDMap("init", *ki)); + } + return true; // Config was successful. } |
