diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-10-29 15:12:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-10-29 15:12:18 +0200 |
commit | 042a541b08d306e846085fa1ca42d533a6f61734 (patch) | |
tree | b4fc4abc577bef77952c23d8dc014685a70ed473 /libbuild2/target-state.hxx | |
parent | 653748e3673f515c2ceabe9ef2d57ba087abeb7a (diff) |
Tweak some more fix for data race in ad hoc member state when group is postponed
Diffstat (limited to 'libbuild2/target-state.hxx')
-rw-r--r-- | libbuild2/target-state.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbuild2/target-state.hxx b/libbuild2/target-state.hxx index a6106f7..df54876 100644 --- a/libbuild2/target-state.hxx +++ b/libbuild2/target-state.hxx @@ -25,7 +25,8 @@ namespace build2 // enum class target_state: uint8_t { - unknown = 1, + uninitialized = 0, + unknown, unchanged, postponed, busy, |