This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Avoid deadlock while creating platform views with multiple engines. #28224
Merged
fluttergithubbot
merged 1 commit into
flutter:master
from
eggfly:avoid_platform_views_deadlock
Aug 23, 2021
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,8 @@ SharedThreadMerger::SharedThreadMerger(fml::TaskQueueId owner, | |
| fml::TaskQueueId subsumed) | ||
| : owner_(owner), | ||
| subsumed_(subsumed), | ||
| task_queues_(fml::MessageLoopTaskQueues::GetInstance()) {} | ||
| task_queues_(fml::MessageLoopTaskQueues::GetInstance()), | ||
| enabled_(true) {} | ||
|
|
||
| bool SharedThreadMerger::MergeWithLease(RasterThreadMergerId caller, | ||
| size_t lease_term) { | ||
|
|
@@ -85,6 +86,14 @@ bool SharedThreadMerger::IsMergedUnSafe() const { | |
| return !IsAllLeaseTermsZeroUnSafe(); | ||
| } | ||
|
|
||
| bool SharedThreadMerger::IsEnabledUnSafe() const { | ||
| return enabled_; | ||
| } | ||
|
|
||
| void SharedThreadMerger::SetEnabledUnSafe(bool enabled) { | ||
| enabled_ = enabled; | ||
| } | ||
|
|
||
|
Comment on lines
+89
to
+96
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a bit uncertain about which threads are allowed to call this.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, I will think about it |
||
| bool SharedThreadMerger::IsAllLeaseTermsZeroUnSafe() const { | ||
| return std::all_of(lease_term_by_caller_.begin(), lease_term_by_caller_.end(), | ||
| [&](const auto& item) { return item.second == 0; }); | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a bit odd that the writing of this is in a mutex lock, where reading is not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gaaclarke Thanks! 💪 I also have some changes about the thread merger, I will deal with it together with another PR.