-
Notifications
You must be signed in to change notification settings - Fork 43
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
Introduce socketpair
abstraction for process local events
#508
Comments
See this for windows inspiration: https://github.com/sunfishcode/socketpair/blob/main/src/windows_async_std.rs |
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 13, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
…ketpair file on Windows
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
…ketpair file on Windows
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
elfenpiff
added a commit
to elfenpiff/iceoryx2
that referenced
this issue
Jan 14, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brief feature description
Since the
WaitSet
must support file descriptors, the event messaging pattern must be based on file descriptors. Currently, the process local variant uses non-process local unix datagram sockets which violate the process local contract.This can be solved by creating an abstraction for
socketpair()
and implementing an event concept on them so that it can be used in process local services.The text was updated successfully, but these errors were encountered: