2012-02-02 10:09:00 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-02-10 14:04:44 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-02-02 10:09:00 +04:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2012-02-10 14:04:44 +04:00
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-02-02 10:09:00 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_hal_Types_h
|
|
|
|
#define mozilla_hal_Types_h
|
|
|
|
|
2020-12-10 14:09:21 +03:00
|
|
|
#include "ipc/EnumSerializer.h"
|
2013-06-23 11:14:32 +04:00
|
|
|
#include "mozilla/Observer.h"
|
2012-02-02 10:09:00 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal {
|
|
|
|
|
2013-02-15 00:41:29 +04:00
|
|
|
/**
|
2013-02-15 17:40:01 +04:00
|
|
|
* These constants specify special values for content process IDs. You can get
|
|
|
|
* a content process ID by calling ContentChild::GetID() or
|
|
|
|
* ContentParent::GetChildID().
|
2013-02-15 00:41:29 +04:00
|
|
|
*/
|
|
|
|
const uint64_t CONTENT_PROCESS_ID_UNKNOWN = uint64_t(-1);
|
|
|
|
const uint64_t CONTENT_PROCESS_ID_MAIN = 0;
|
|
|
|
|
2013-02-23 08:24:28 +04:00
|
|
|
// Note that we rely on the order of this enum's entries. Higher priorities
|
|
|
|
// should have larger int values.
|
2012-08-05 09:09:39 +04:00
|
|
|
enum ProcessPriority {
|
2013-02-23 08:24:28 +04:00
|
|
|
PROCESS_PRIORITY_UNKNOWN = -1,
|
2012-08-05 09:09:39 +04:00
|
|
|
PROCESS_PRIORITY_BACKGROUND,
|
2013-01-05 09:03:51 +04:00
|
|
|
PROCESS_PRIORITY_BACKGROUND_PERCEIVABLE,
|
2013-09-24 12:10:20 +04:00
|
|
|
PROCESS_PRIORITY_FOREGROUND_KEYBOARD,
|
2017-02-01 15:34:24 +03:00
|
|
|
// The special class for the preallocated process, high memory priority but
|
|
|
|
// low CPU priority.
|
|
|
|
PROCESS_PRIORITY_PREALLOC,
|
2013-01-04 03:39:25 +04:00
|
|
|
// Any priority greater than or equal to FOREGROUND is considered
|
|
|
|
// "foreground" for the purposes of priority testing, for example
|
|
|
|
// CurrentProcessIsForeground().
|
2012-08-05 09:09:39 +04:00
|
|
|
PROCESS_PRIORITY_FOREGROUND,
|
2013-02-15 00:41:30 +04:00
|
|
|
PROCESS_PRIORITY_FOREGROUND_HIGH,
|
2020-06-23 20:34:51 +03:00
|
|
|
PROCESS_PRIORITY_PARENT_PROCESS,
|
2012-08-05 09:09:39 +04:00
|
|
|
NUM_PROCESS_PRIORITY
|
|
|
|
};
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2014-05-05 19:37:00 +04:00
|
|
|
/**
|
2015-02-26 14:43:22 +03:00
|
|
|
* Convert a ProcessPriority enum value to a string. The strings returned by
|
|
|
|
* this function are statically allocated; do not attempt to free one!
|
2014-05-05 19:37:00 +04:00
|
|
|
*
|
|
|
|
* If you pass an unknown process priority, we fatally assert in debug
|
|
|
|
* builds and otherwise return "???".
|
|
|
|
*/
|
2013-02-08 18:32:23 +04:00
|
|
|
const char* ProcessPriorityToString(ProcessPriority aPriority);
|
|
|
|
|
2012-03-07 15:03:25 +04:00
|
|
|
/**
|
|
|
|
* Used by ModifyWakeLock
|
|
|
|
*/
|
|
|
|
enum WakeLockControl {
|
|
|
|
WAKE_LOCK_REMOVE_ONE = -1,
|
|
|
|
WAKE_LOCK_NO_CHANGE = 0,
|
|
|
|
WAKE_LOCK_ADD_ONE = 1,
|
2012-08-26 02:38:04 +04:00
|
|
|
NUM_WAKE_LOCK
|
2012-03-07 15:03:25 +04:00
|
|
|
};
|
|
|
|
|
2012-08-05 09:09:39 +04:00
|
|
|
} // namespace hal
|
|
|
|
} // namespace mozilla
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2012-02-02 10:09:00 +04:00
|
|
|
namespace IPC {
|
|
|
|
|
2012-03-07 15:03:25 +04:00
|
|
|
/**
|
|
|
|
* WakeLockControl serializer.
|
|
|
|
*/
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::WakeLockControl>
|
2014-04-14 18:17:40 +04:00
|
|
|
: public ContiguousEnumSerializer<mozilla::hal::WakeLockControl,
|
|
|
|
mozilla::hal::WAKE_LOCK_REMOVE_ONE,
|
|
|
|
mozilla::hal::NUM_WAKE_LOCK> {};
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2012-08-05 09:09:39 +04:00
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::ProcessPriority>
|
2014-04-14 18:17:40 +04:00
|
|
|
: public ContiguousEnumSerializer<mozilla::hal::ProcessPriority,
|
|
|
|
mozilla::hal::PROCESS_PRIORITY_UNKNOWN,
|
|
|
|
mozilla::hal::NUM_PROCESS_PRIORITY> {};
|
|
|
|
|
2012-02-02 10:09:00 +04:00
|
|
|
} // namespace IPC
|
|
|
|
|
|
|
|
#endif // mozilla_hal_Types_h
|