mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-14 11:40:02 +00:00
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:
parent
a899f9f824
commit
6598eeee92
@ -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,
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user