Bug 731272 - Add the current instruction to the top of the stack. r=jrmuizel

This commit is contained in:
Markus Stange 2012-03-22 23:31:56 +01:00
Родитель 7199a538ab
Коммит ba9d8ddfb3
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -523,6 +523,10 @@ void TableTicker::doBacktrace(ThreadProfile &aProfile, TickSample* aSample)
mozilla::ArrayLength(pc_array),
0
};
// Start with the current function.
StackWalkCallback(aSample->pc, &array);
#ifdef XP_MACOSX
pthread_t pt = GetProfiledThread(platform_data());
void *stackEnd = reinterpret_cast<void*>(-1);