# HG changeset patch # User wenzelm # Date 1343119393 -7200 # Node ID 20170ae271a5d7ffd809b9e8633e657d1c82ef97 # Parent 375e45df6fdfda595eb4b51e371ef4c7ed0384e8 tuned options; diff -r 375e45df6fdf -r 20170ae271a5 etc/options --- a/etc/options Tue Jul 24 10:39:03 2012 +0200 +++ b/etc/options Tue Jul 24 10:43:13 2012 +0200 @@ -8,7 +8,7 @@ declare document_dump : string = "" declare no_document : bool = false -declare threads_limit : int = 1 +declare threads : int = 1 declare threads_trace : int = 0 declare parallel_proofs : int = 1 declare parallel_proofs_threshold : int = 100 diff -r 375e45df6fdf -r 20170ae271a5 src/Pure/System/build.ML --- a/src/Pure/System/build.ML Tue Jul 24 10:39:03 2012 +0200 +++ b/src/Pure/System/build.ML Tue Jul 24 10:43:13 2012 +0200 @@ -21,7 +21,7 @@ |> Unsynchronized.setmp Goal.parallel_proofs_threshold (Options.int options "parallel_proofs_threshold") |> Unsynchronized.setmp Multithreading.trace (Options.int options "threads_trace") - |> Unsynchronized.setmp Multithreading.max_threads (Options.int options "threads_limit") + |> Unsynchronized.setmp Multithreading.max_threads (Options.int options "threads") |> Options.bool options "no_document" ? Present.no_document; fun build args_file =