Epoll backend switch

This commit is contained in:
Mark Qvist 2025-04-08 02:33:32 +02:00
parent 6dc33126a5
commit 13b4291840
4 changed files with 11 additions and 4 deletions

View file

@ -32,6 +32,10 @@ def is_windows():
else:
return False
def use_epoll():
if is_linux(): return True
else: return False
def platform_checks():
if is_windows():
import sys