You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Warnings arising from the flow-sensitive checking of Sendability of
866
866
// non-Sendable values
867
-
WARNING(consumed_value_used, none,
868
-
"non-Sendable value consumed, then used at this site; could yield race with another thread", ())
869
867
WARNING(arg_region_consumed, none,
870
-
"this application could pass `self` or a Non-Sendable argument of this function to another thread, potentially yielding a race with the caller", ())
868
+
"call site passes `self` or a non-sendable argument of this function to another thread, potentially yielding a race with the caller", ())
871
869
WARNING(consumption_yields_race, none,
872
-
"non-Sendable value sent across isolation domains here, but could be accessed later in this function (%0 access site%select{|s}1 displayed%select{|, %3 more hidden}2)", (unsigned, bool, bool, unsigned))
870
+
"non-sendable value sent across isolation domains that could be concurrently accessed later in this function (%0 access site%select{|s}1 displayed%select{|, %3 more hidden}2)",
871
+
(unsigned, bool, bool, unsigned))
872
+
WARNING(call_site_consumption_yields_race, none,
873
+
"passing argument of non-sendable type %0 from %1 context to %2 context at this call site could yield a race with accesses later in this function (%3 access site%select{|s}4 displayed%select{|, %6 more hidden}5)",
0 commit comments