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
There seem to be at least 2 problems:
MacOSX doesn't seem to have SOCK_CLOEXEC, so perhaps #define SOCK_CLOEXEC FD_CLOEXEC in a header is useful?
SOCK_CLOEXEC
#define SOCK_CLOEXEC FD_CLOEXEC
Also, MacOSX doesn't have ppoll(), so probably should use poll() instead? Is &oldmask critical in proc_rsync()?
ppoll()
poll()
&oldmask
The text was updated successfully, but these errors were encountered:
Does this approach perhaps work? https://github.com/ArduPilot/ardupilot/pull/8593/files
Sorry, something went wrong.
CLOEXEC is the easy part: it's the ppoll(2) that's the hard part. I'll need to do this on NetBSD as well---I'll get around to it!
No branches or pull requests
There seem to be at least 2 problems:
MacOSX doesn't seem to have
SOCK_CLOEXEC
, so perhaps#define SOCK_CLOEXEC FD_CLOEXEC
in a header is useful?Also, MacOSX doesn't have
ppoll()
, so probably should usepoll()
instead? Is&oldmask
critical in proc_rsync()?The text was updated successfully, but these errors were encountered: