Skip to content

read clipboard with poll(2)

programs that have large number of files open will create filedescriptors > 1024 which causes issue for select(2).

Converting from select(2) to poll(2) avoids this issue.

Merge request reports