We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You are using select.epoll in lib/connection.py which is Linux-only.
http://docs.python.org/3/library/select.html : select.epoll(sizehint=-1, flags=0) (Only supported on Linux 2.5.44 and newer.)
Is this absolutely necessary?
FreeBSD:
>>> dir(select) ['KQ_EV_ADD', 'KQ_EV_CLEAR', 'KQ_EV_DELETE', 'KQ_EV_DISABLE', 'KQ_EV_ENABLE', 'KQ_EV_EOF', 'KQ_EV_ERROR', 'KQ_EV_FLAG1', 'KQ_EV_ONESHOT', 'KQ_EV_SYSFLAGS', 'KQ_FILTER_AIO', 'KQ_FILTER_PROC', 'KQ_FILTER_READ', 'KQ_FILTER_SIGNAL', 'KQ_FILTER_TIMER', 'KQ_FILTER_VNODE', 'KQ_FILTER_WRITE', 'KQ_NOTE_ATTRIB', 'KQ_NOTE_CHILD', 'KQ_NOTE_DELETE', 'KQ_NOTE_EXEC', 'KQ_NOTE_EXIT', 'KQ_NOTE_EXTEND', 'KQ_NOTE_FORK', 'KQ_NOTE_LINK', 'KQ_NOTE_LOWAT', 'KQ_NOTE_PCTRLMASK', 'KQ_NOTE_PDATAMASK', 'KQ_NOTE_RENAME', 'KQ_NOTE_REVOKE', 'KQ_NOTE_TRACK', 'KQ_NOTE_TRACKERR', 'KQ_NOTE_WRITE', 'PIPE_BUF', 'POLLERR', 'POLLHUP', 'POLLIN', 'POLLNVAL', 'POLLOUT', 'POLLPRI', 'POLLRDBAND', 'POLLRDNORM', 'POLLWRBAND', 'POLLWRNORM', '__doc__', '__file__', '__name__', '__package__', 'error', 'kevent', 'kqueue', 'poll', 'select']
The text was updated successfully, but these errors were encountered:
Hi,
no this is not absolutely necessary. But since I support Linux (at this time) only. It should be easy to adapt it to Kqueues.
So long
Marcus
Sorry, something went wrong.
Add me to the list. Would like to use it on my MacMini-Server.
We should rename the issue to "xBSD support" lib/daemon.py def get_pid(filename) is Linux-specific (/proc), too
Made a pull request, see #99
No branches or pull requests
You are using select.epoll in lib/connection.py which is Linux-only.
http://docs.python.org/3/library/select.html :
select.epoll(sizehint=-1, flags=0) (Only supported on Linux 2.5.44 and newer.)
Is this absolutely necessary?
FreeBSD:
The text was updated successfully, but these errors were encountered: