1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-09 03:00:41 +03:00

Fix for Mac OS CPU utilization

This commit is contained in:
Mike Selivanov 2015-06-29 14:48:44 +03:00
parent ff49706373
commit 405fcdbef0

View File

@ -9218,7 +9218,7 @@ void UnixSelectInner(UINT num_read, UINT *reads, UINT num_write, UINT *writes, U
kevent_timeout.tv_nsec = (timeout % 1000) * 1000000l;
p_kevent_timeout = &kevent_timeout;
}
kevent(kq, kevents, n, kevents, n, p_kevent_timeout);
kevent(kq, NULL, 0, kevents, n, p_kevent_timeout);
#else // UNIX_MACOS
poll(p, num, timeout == INFINITE ? -1 : (int)timeout);
#endif // UNIX_MACOS