From ea22643b2217921df74ea14df47d7c83987d5761 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 9 Dec 2016 17:29:27 +0200 Subject: Initial parallel scheduler implementation, use to run testscrips --- build2/b-options | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'build2/b-options') 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_; -- cgit v1.1