Skip to content

Commit

Permalink
fix: disable threaded console when we use fork
Browse files Browse the repository at this point in the history
This is similar to ocaml#8100 for the threaded console. The reason we're
doing that is to avoid threads when fork is involved.

Signed-off-by: Etienne Millon <[email protected]>
  • Loading branch information
emillon committed Jul 6, 2023
1 parent bb06683 commit c1f8fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dune_config/config.ml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ let threaded_console =
let t =
{ name = "threaded_console"
; of_string = Toggle.of_string
; value = `Enabled
; value = background_default
}
in
register t;
Expand Down

0 comments on commit c1f8fdc

Please sign in to comment.