move poll wrapper on top of select (only used on Windows) to the ix namespace

This commit is contained in:
Benjamin Sergeant
2019-09-08 11:14:49 -07:00
parent ae3856c10f
commit 48cefe5525
6 changed files with 16 additions and 10 deletions

View File

@ -79,7 +79,7 @@ namespace ix
}
}
int ret = ::poll(fds, nfds, timeoutMs);
int ret = ix::poll(fds, nfds, timeoutMs);
PollResultType pollResult = PollResultType::ReadyForRead;
if (ret < 0)