diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-22 13:03:21 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-22 13:03:21 +0200 |
commit | cee00343d0c537a31281b4de74fadd7589d434b0 (patch) | |
tree | e431925cb8d77194c9ae564dedc2739030b202b7 /libbuild2/context.cxx | |
parent | bf8fd996b6651edcbb2235bbc6fae307a3638611 (diff) |
Rename global_mutex_shards to global_mutexes
Diffstat (limited to 'libbuild2/context.cxx')
-rw-r--r-- | libbuild2/context.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/context.cxx b/libbuild2/context.cxx index 23942a8..841cc1d 100644 --- a/libbuild2/context.cxx +++ b/libbuild2/context.cxx @@ -56,14 +56,14 @@ namespace build2 context:: context (scheduler& s, - global_mutex_shards& ms, + global_mutexes& ms, bool dr, bool kg, const strings& cmd_vars, optional<context*> mc) : data_ (new data (*this)), sched (s), - mutex_shards (ms), + mutexes (ms), dry_run_option (dr), keep_going (kg), phase_mutex (*this), |