-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
Support for OS X #16
Comments
I can think of two ways:
I tried the former but it won't really work for detecting SIPp process completion since each subproc writes extensively to stderr/stdout, plus, I don't think we'll be able to do async launching the same way since you can't pre-register fds. I have no experience with the latter and don't have a BSD machine to test on. @vodik got any other ideas? |
Just a thought - after we bring in the py3 support (#15) we could just use |
@tgoodlet I have no problem with that so long as you're cool being python3 only. |
@tgoodlet Oh, without asyncio, just use |
Use `select.select` to track subproc completion since `select.epoll` isn't available on OSX. Resolves #16
@ydinari any luck trying that branch? |
Earth to @ydinari? |
Use `select.select` to track subproc completion since `select.epoll` isn't available on OSX. Resolves #16
Need to change use of select.epoll (in launch.py) with select.select() (I think), because epoll is only supported on linux.
The text was updated successfully, but these errors were encountered: