FallbackProcessPriority.cpp 576 B

12345678910111213141516171819202122
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  3. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include "Hal.h"
  5. #include "HalLog.h"
  6. using namespace mozilla::hal;
  7. namespace mozilla {
  8. namespace hal_impl {
  9. void
  10. SetProcessPriority(int aPid, ProcessPriority aPriority, uint32_t aLRU)
  11. {
  12. HAL_LOG("FallbackProcessPriority - SetProcessPriority(%d, %s, %u)\n",
  13. aPid, ProcessPriorityToString(aPriority), aLRU);
  14. }
  15. } // namespace hal_impl
  16. } // namespace mozilla