aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/target-state.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-10-29 15:12:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2024-10-29 15:12:18 +0200
commit042a541b08d306e846085fa1ca42d533a6f61734 (patch)
treeb4fc4abc577bef77952c23d8dc014685a70ed473 /libbuild2/target-state.hxx
parent653748e3673f515c2ceabe9ef2d57ba087abeb7a (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.hxx3
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,