mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Set number of cores = 1 due to suspected Cairo thread unsafety
This commit is contained in:
parent
0034e2d6be
commit
f249396712
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ pub fn from_cmdline_args(args: &[~str]) -> Opts {
|
|||
|
||||
let n_render_threads: uint = match getopts::opt_maybe_str(move opt_match, ~"t") {
|
||||
Some(move n_render_threads_str) => from_str::from_str(n_render_threads_str).get(),
|
||||
None => 2, // FIXME: Number of cores.
|
||||
None => 1, // FIXME: Number of cores.
|
||||
};
|
||||
|
||||
Opts {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue