-
Notifications
You must be signed in to change notification settings - Fork 453
Finally introduce sane unified scheduler shutdown #5866
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -644,6 +644,16 @@ impl ForkGraph for BankForks { | |
} | ||
} | ||
|
||
impl Drop for BankForks { | ||
fn drop(&mut self) { | ||
self.banks.clear(); | ||
if let Some(sp) = self.scheduler_pool.take() { | ||
sp.uninstalled_from_bank_forks(); | ||
} | ||
error!("BankForks::drop(): successfully dropped"); | ||
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. note to self: now that, ProgramCache's BankForks circular-referenc is gone. maybe i can wire 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. this is done: 163015a |
||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use { | ||
|
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.
This seems like a separate change to assist in debugging thread-joining issues. Probably a good change to make, but not related to fixing this issue afiact?
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.
yeah. another piggy-bucked salvation from the ancient pr #593 by procrastinating me.