Re: [screen-devel] [PATCH 1/4] Convert select() to poll() in display.c

2019-12-28 Thread Amadeusz Sławiński
On Sun, 3 Nov 2019 00:31:57 +0100 Amadeusz Sławiński wrote: > select() limits number of file descriptors that can be used by screen. > Migrate to poll() to avoid this limitation. > > Bug: 55697 > > Signed-off-by: Amadeusz Sławiński No comments, so pushed all 4 patches to master

[screen-devel] [PATCH 1/4] Convert select() to poll() in display.c

2019-11-02 Thread Amadeusz Sławiński
select() limits number of file descriptors that can be used by screen. Migrate to poll() to avoid this limitation. Bug: 55697 Signed-off-by: Amadeusz Sławiński --- src/display.c | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/display.c b/sr