mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
terminal: ptmx: ignore *both* EPOLLIN and EPOLLOUT on EPOLLHUP
This commit is contained in:
parent
fd82caad42
commit
fef07138b3
1 changed files with 11 additions and 5 deletions
16
terminal.c
16
terminal.c
|
|
@ -117,15 +117,21 @@ fdm_ptmx(struct fdm *fdm, int fd, int events, void *data)
|
|||
{
|
||||
struct terminal *term = data;
|
||||
|
||||
if (unlikely(events & EPOLLOUT)) {
|
||||
bool pollin = events & EPOLLIN;
|
||||
bool pollout = events & EPOLLOUT;
|
||||
bool hup = events & EPOLLHUP;
|
||||
|
||||
if (hup) {
|
||||
/* TODO: should we *not* ignore pollin? */
|
||||
return term_shutdown(term);
|
||||
}
|
||||
|
||||
if (pollout) {
|
||||
if (!fdm_ptmx_out(fdm, fd, events, data))
|
||||
return false;
|
||||
}
|
||||
|
||||
if (unlikely((events & EPOLLHUP) && !(events & EPOLLIN)))
|
||||
return term_shutdown(term);
|
||||
|
||||
if (unlikely(!(events & EPOLLIN)))
|
||||
if (!pollin)
|
||||
return true;
|
||||
|
||||
uint8_t buf[24 * 1024];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue