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.ixx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'build2/b-options.ixx') diff --git a/build2/b-options.ixx b/build2/b-options.ixx index fb9b10e..190c960 100644 --- a/build2/b-options.ixx +++ b/build2/b-options.ixx @@ -229,9 +229,9 @@ namespace build2 } inline const bool& options:: - q () const + quiet () const { - return this->q_; + return this->quiet_; } inline const uint16_t& options:: @@ -246,6 +246,18 @@ namespace build2 return this->verbose_specified_; } + inline const size_t& options:: + jobs () const + { + return this->jobs_; + } + + inline bool options:: + jobs_specified () const + { + return this->jobs_specified_; + } + inline const bool& options:: no_column () const { -- cgit v1.1