1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef __mozilla_ProcInfo_h
7 #define __mozilla_ProcInfo_h
9 #include <base/process.h>
11 #include "mozilla/dom/ipc/IdType.h"
16 class GeckoChildProcessHost
;
19 // Process types. When updating this enum, please make sure to update
20 // WebIDLProcType and ProcTypeToWebIDL to mirror the changes.
22 // These must match the ones in ContentParent.h, and E10SUtils.jsm
28 // the rest matches GeckoProcessTypes.h
29 Browser
, // Default is named Browser here
38 #ifdef MOZ_ENABLE_FORKSERVER
41 // Unknown type of process
48 base::ProcessId tid
= 0;
49 // Thread name, if any.
54 uint64_t cpuKernel
= 0;
59 base::ProcessId pid
= 0;
60 // Child Id as defined by Firefox when a child process is created.
61 dom::ContentParentId childId
;
64 // Process filename (without the path name).
67 uint64_t virtualMemorySize
= 0;
69 int64_t residentSetSize
= 0;
73 uint64_t cpuKernel
= 0;
74 // Threads owned by this process.
75 nsTArray
<ThreadInfo
> threads
;
78 typedef MozPromise
<ProcInfo
, nsresult
, true> ProcInfoPromise
;
81 * GetProcInfo() uses a background thread to perform system calls.
83 * Depending on the platform, this call can be quite expensive and the
84 * promise may return after several ms.
87 RefPtr
<ProcInfoPromise
> GetProcInfo(base::ProcessId pid
, int32_t childId
,
89 mach_port_t aChildTask
= MACH_PORT_NULL
);
91 RefPtr
<ProcInfoPromise
> GetProcInfo(base::ProcessId pid
, int32_t childId
,
92 const ProcType
& type
);
95 } // namespace mozilla