Bug 1357829 - Part 3: Remove profiler_get_stack_top, r=njn

MozReview-Commit-ID: C4DvuOvYSrs
This commit is contained in:
Michael Layzell 2017-05-11 16:26:36 -04:00
Родитель 7121551189
Коммит 3e295cfe16
2 изменённых файлов: 0 добавлений и 17 удалений

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

@ -3089,17 +3089,6 @@ profiler_clear_js_context()
info->mContext = nullptr;
}
void*
profiler_get_stack_top()
{
PSAutoLock lock(gPSMutex);
ThreadInfo* threadInfo = FindLiveThreadInfo(lock);
if (threadInfo) {
return threadInfo->StackTop();
}
return nullptr;
}
int
profiler_current_thread_id()
{

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

@ -382,12 +382,6 @@ PROFILER_FUNC(double profiler_time(), 0)
PROFILER_FUNC_VOID(profiler_log(const char* aStr))
// Gets the stack top of the current thread.
//
// The thread must have been previously registered with the profiler, otherwise
// this method will return nullptr.
PROFILER_FUNC(void* profiler_get_stack_top(), nullptr)
PROFILER_FUNC(int profiler_current_thread_id(), 0)
// This method suspends the thread identified by aThreadId, optionally samples