mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01:00
opts: Add a --force-ipc option (#38833)
Testing: servo.org loads properly with `./mach run -- -I` Fixes: https://github.com/servo/servo/issues/38823 Signed-off-by: Rahul Menon <menonrahul02@gmail.com>
This commit is contained in:
parent
f30be4e1ab
commit
e00f39d827
3 changed files with 8 additions and 1 deletions
|
@ -47,6 +47,10 @@ pub struct Opts {
|
|||
/// Whether we're running in multiprocess mode.
|
||||
pub multiprocess: bool,
|
||||
|
||||
/// Whether to force using ipc_channel instead of crossbeam_channel in singleprocess mode. Does
|
||||
/// nothing in multiprocess mode.
|
||||
pub force_ipc: bool,
|
||||
|
||||
/// Whether we want background hang monitor enabled or not
|
||||
pub background_hang_monitor: bool,
|
||||
|
||||
|
@ -189,6 +193,7 @@ impl Default for Opts {
|
|||
user_stylesheets: Vec::new(),
|
||||
hard_fail: true,
|
||||
multiprocess: false,
|
||||
force_ipc: false,
|
||||
background_hang_monitor: false,
|
||||
random_pipeline_closure_probability: None,
|
||||
random_pipeline_closure_seed: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue