mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
No multiprocess on win arm64.
This commit is contained in:
parent
b8aac8b152
commit
4367365419
1 changed files with 5 additions and 1 deletions
|
@ -599,7 +599,11 @@ impl UnprivilegedPipelineContent {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(any(target_os = "android", target_arch = "arm", target_arch = "aarch64"))]
|
||||
#[cfg(any(
|
||||
target_os = "android",
|
||||
target_arch = "arm",
|
||||
all(target_arch = "aarch64", not(target_os = "windows"))
|
||||
))]
|
||||
pub fn spawn_multiprocess(self) -> Result<(), Error> {
|
||||
use ipc_channel::ipc::IpcOneShotServer;
|
||||
// Note that this function can panic, due to process creation,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue