diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-22 10:02:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-22 10:17:41 +0200 |
commit | b47a323f09f1f9ccece03ca4d84dbe7a47ff8177 (patch) | |
tree | 7c520e5878b1988425520424c5e372f7439636d9 /libbuild2/context.cxx | |
parent | 1bbd6bdb1bbf6783aefd10392e5c0599318a927f (diff) |
Move global mutex shards to context
Diffstat (limited to 'libbuild2/context.cxx')
-rw-r--r-- | libbuild2/context.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/context.cxx b/libbuild2/context.cxx index cc0eb0b..23942a8 100644 --- a/libbuild2/context.cxx +++ b/libbuild2/context.cxx @@ -56,12 +56,14 @@ namespace build2 context:: context (scheduler& s, + global_mutex_shards& ms, bool dr, bool kg, const strings& cmd_vars, optional<context*> mc) : data_ (new data (*this)), sched (s), + mutex_shards (ms), dry_run_option (dr), keep_going (kg), phase_mutex (*this), |