Bug 1856287 - Do not use PROCESS_MODE_BACKGROUND_BEGIN to run the minidum-analyzer in the background on Windows r=gsvelto

Differential Revision: https://phabricator.services.mozilla.com/D190259
This commit is contained in:
fidelius 2023-10-06 12:49:27 +00:00
Родитель 390d0b6377
Коммит d0883d0dec
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -555,8 +555,7 @@ struct CharTraits<wchar_t> {
static void LowerPriority() {
#if defined(XP_WIN)
Unused << SetPriorityClass(GetCurrentProcess(),
PROCESS_MODE_BACKGROUND_BEGIN);
Unused << SetPriorityClass(GetCurrentProcess(), BELOW_NORMAL_PRIORITY_CLASS);
#else // Linux, MacOS X, etc...
Unused << nice(20);
#endif