Bug 1078122 part 4 - Make the mSource and mTimeline members of AnimationPlayer protec...
[gecko.git] / hal / fallback / FallbackProcessPriority.cpp
blobdb8eecc071ee69a9ef2fad8f24f880cf5bca503d
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/. */
5 #include "Hal.h"
6 #include "HalLog.h"
8 using namespace mozilla::hal;
10 namespace mozilla {
11 namespace hal_impl {
13 void
14 SetProcessPriority(int aPid,
15 ProcessPriority aPriority,
16 ProcessCPUPriority aCPUPriority,
17 uint32_t aBackgroundLRU)
19 HAL_LOG("FallbackProcessPriority - SetProcessPriority(%d, %s, %u)\n",
20 aPid, ProcessPriorityToString(aPriority, aCPUPriority),
21 aBackgroundLRU);
24 } // hal_impl
25 } // namespace mozilla