mirror of
https://github.com/wez/wezterm.git
synced 2024-12-19 03:11:31 +03:00
don't accumulate lingering zombies after closing a tab
This commit is contained in:
parent
2b822687be
commit
1c4500082f
@ -28,6 +28,14 @@ struct Tab {
|
||||
pty: RefCell<MasterPty>,
|
||||
}
|
||||
|
||||
impl Drop for Tab {
|
||||
fn drop(&mut self) {
|
||||
// Avoid lingering zombies
|
||||
self.process.borrow_mut().kill().ok();
|
||||
self.process.borrow_mut().wait().ok();
|
||||
}
|
||||
}
|
||||
|
||||
struct Tabs {
|
||||
tabs: Vec<Tab>,
|
||||
active: usize,
|
||||
|
Loading…
Reference in New Issue
Block a user