aboutsummaryrefslogtreecommitdiff
path: root/build2/b-options
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-12-09 17:29:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-12-09 17:29:27 +0200
commitea22643b2217921df74ea14df47d7c83987d5761 (patch)
tree91480771997be1b7f92f46ee404c266e0f4dcd76 /build2/b-options
parent1a9d610051cd48c98fb71a570a0871b4e073cec9 (diff)
Initial parallel scheduler implementation, use to run testscrips
Diffstat (limited to 'build2/b-options')
-rw-r--r--build2/b-options12
1 files changed, 10 insertions, 2 deletions
diff --git a/build2/b-options b/build2/b-options
index 6a2088d..f05f483 100644
--- a/build2/b-options
+++ b/build2/b-options
@@ -402,7 +402,7 @@ namespace build2
V () const;
const bool&
- q () const;
+ quiet () const;
const uint16_t&
verbose () const;
@@ -410,6 +410,12 @@ namespace build2
bool
verbose_specified () const;
+ const size_t&
+ jobs () const;
+
+ bool
+ jobs_specified () const;
+
const bool&
no_column () const;
@@ -473,9 +479,11 @@ namespace build2
public:
bool v_;
bool V_;
- bool q_;
+ bool quiet_;
uint16_t verbose_;
bool verbose_specified_;
+ size_t jobs_;
+ bool jobs_specified_;
bool no_column_;
bool no_line_;
path buildfile_;