2012-08-05 09:09:39 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "Hal.h"
|
2014-09-24 17:23:18 +04:00
|
|
|
#include "HalLog.h"
|
2012-08-05 09:09:39 +04:00
|
|
|
|
|
|
|
using namespace mozilla::hal;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal_impl {
|
|
|
|
|
2017-05-26 18:50:17 +03:00
|
|
|
void SetProcessPriority(int aPid, ProcessPriority aPriority) {
|
|
|
|
HAL_LOG("FallbackProcessPriority - SetProcessPriority(%d, %s)\n", aPid,
|
|
|
|
ProcessPriorityToString(aPriority));
|
2012-08-05 09:09:39 +04:00
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace hal_impl
|
2012-08-05 09:09:39 +04:00
|
|
|
} // namespace mozilla
|