Skip to content
Snippets Groups Projects
Commit 83dcf6b1 authored by andreykproductengine's avatar andreykproductengine
Browse files

MAINT-8689 Diagnostics for coroutine memory crash

parent f77de22d
No related branches found
No related tags found
No related merge requests found
...@@ -283,6 +283,7 @@ void LLCoros::setStackSize(S32 stacksize) ...@@ -283,6 +283,7 @@ void LLCoros::setStackSize(S32 stacksize)
void LLCoros::printActiveCoroutines() void LLCoros::printActiveCoroutines()
{ {
LL_INFOS("LLCoros") << "Number of active coroutines: " << (S32)mCoros.size() << LL_ENDL;
LL_INFOS("LLCoros") << "-------------- List of active coroutines ------------"; LL_INFOS("LLCoros") << "-------------- List of active coroutines ------------";
CoroMap::iterator iter; CoroMap::iterator iter;
CoroMap::iterator end = mCoros.end(); CoroMap::iterator end = mCoros.end();
...@@ -401,7 +402,13 @@ std::string LLCoros::launch(const std::string& prefix, const callable_t& callabl ...@@ -401,7 +402,13 @@ std::string LLCoros::launch(const std::string& prefix, const callable_t& callabl
std::string name(generateDistinctName(prefix)); std::string name(generateDistinctName(prefix));
Current current; Current current;
// pass the current value of Current as previous context // pass the current value of Current as previous context
CoroData* newCoro = new CoroData(current, name, callable, mStackSize); CoroData* newCoro = new(std::nothrow) CoroData(current, name, callable, mStackSize);
if (newCoro == NULL)
{
// Out of memory?
printActiveCoroutines();
LL_ERRS("LLCoros") << "Failed to start coroutine: " << name << " Stacksize: " << mStackSize << " Total coroutines: " << mCoros.size() << LL_ENDL;
}
// Store it in our pointer map // Store it in our pointer map
mCoros.insert(name, newCoro); mCoros.insert(name, newCoro);
// also set it as current // also set it as current
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment