autocommit 2022-03-02 14:24:07 CET
This commit is contained in:
parent
0e9afcbfa5
commit
aa0cb94143
30 changed files with 1059 additions and 123 deletions
|
|
@ -247,7 +247,12 @@ impl Wm {
|
|||
return;
|
||||
}
|
||||
futures::select! {
|
||||
_ = self.socket.readable().fuse() => { },
|
||||
res = self.socket.readable().fuse() => {
|
||||
if let Err(e) = res {
|
||||
log::error!("Cannot wait for xwm fd to become readable: {}", ErrorFmt(e));
|
||||
return;
|
||||
}
|
||||
}
|
||||
_ = self.queue.non_empty().fuse() => { },
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue