Bug 1126576 (part 2) - Remove redundant check from profiler_init(). r=mstange.

--HG--
extra : rebase_source : 24b458b51352cdd578812c8db8c3fb245e72bf42
This commit is contained in:
Nicholas Nethercote 2017-02-03 10:34:36 +11:00
Родитель b59f5ef845
Коммит b22d13f689
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -432,9 +432,8 @@ profiler_init(void* stackTop)
tlsPseudoStack.set(stack);
bool isMainThread = true;
Sampler::RegisterCurrentThread(isMainThread ?
gGeckoThreadName : "Application Thread",
stack, isMainThread, stackTop);
Sampler::RegisterCurrentThread(gGeckoThreadName, stack, isMainThread,
stackTop);
// Read interval settings from MOZ_PROFILER_INTERVAL and stack-scan
// threshhold from MOZ_PROFILER_STACK_SCAN.