FEXServer: Remove POLLREMOVE usage

Fixes this file compiling on musl at least.

POLLREMOVE usage here is technically incorrect as it shouldn't be OR'd
with other flags.
But it is also additionally wrong here because the Linux kernel doesn't
even support this flag anymore, so it doesn't change behaviour.
This commit is contained in:
Ryan Houdek 2023-02-03 13:35:30 -08:00
parent a899f9f824
commit 6598eeee92

View File

@ -474,7 +474,7 @@ namespace ProcessPipe {
// Add the new client to the temporary array
NewPollFDs.emplace_back(pollfd {
.fd = NewFD,
.events = POLLIN | POLLPRI | POLLRDHUP | POLLREMOVE,
.events = POLLIN | POLLPRI | POLLRDHUP,
.revents = 0,
});
}