mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
aa6f91dd67
This allows us to send a sync fork request to the Nuwa process when we need one but there is no spare process available. After an app is launched, the request to fork a spare process is still handled asynchronously. --HG-- extra : rebase_source : 9b692a647f4fc861285d95f0372d6a9913eadf64
32 lines
759 B
Plaintext
32 lines
759 B
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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 protocol PBackground;
|
|
include ProtocolTypes;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
sync protocol PNuwa
|
|
{
|
|
manager PBackground;
|
|
|
|
child:
|
|
// Ask the Nuwa process to create a new child process.
|
|
async Fork();
|
|
|
|
// This message will be sent to non-Nuwa process, or to Nuwa process during
|
|
// test.
|
|
async __delete__();
|
|
|
|
parent:
|
|
async NotifyReady();
|
|
sync AddNewProcess(uint32_t pid, ProtocolFdMapping[] aFds);
|
|
};
|
|
|
|
} // namespace layout
|
|
} // namespace mozilla
|
|
|