mldbai / mldb

MLDB is the Machine Learning Database
http://mldb.ai
Apache License 2.0
661 stars 102 forks source link

Abstract out epoll/kqueue behind epoller (OSX) #935

Closed jeremybarnes closed 2 years ago

jeremybarnes commented 2 years ago

Epoll is a very linux-specific interface, but has counterparts elsewhere (eg, kqueue on OSX). This patch modifies the interface to be platform- independent and implements the modified interface on Linux (using epoll) and on OSX (using kqueue).