-
Notifications
You must be signed in to change notification settings - Fork 403
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
HandleTranslator in Windows must be thread safe #1264
Milestone
Comments
elfenpiff
added a commit
that referenced
this issue
Mar 9, 2022
Signed-off-by: Christian Eltzschig <me@elchris.org>
elfenpiff
added a commit
that referenced
this issue
Mar 9, 2022
Signed-off-by: Christian Eltzschig <me@elchris.org>
21 tasks
elfenpiff
added a commit
that referenced
this issue
Mar 9, 2022
Signed-off-by: Christian Eltzschig <me@elchris.org>
elfenpiff
added a commit
that referenced
this issue
Mar 10, 2022
…ndle-translator-for-windows Iox #1264 threadsafe handle translator for windows
can this be closed? |
It is only merged to the release branch and not to the master branch which is as well affected. Should we keep this open until |
elfenpiff
added a commit
to ApexAI/iceoryx
that referenced
this issue
Mar 10, 2022
Signed-off-by: Christian Eltzschig <me@elchris.org>
21 tasks
21 tasks
This was referenced Mar 11, 2022
21 tasks
elfenpiff
added a commit
to ApexAI/iceoryx
that referenced
this issue
Mar 18, 2022
…markdown checks Signed-off-by: Christian Eltzschig <me@elchris.org>
elfenpiff
added a commit
to ApexAI/iceoryx
that referenced
this issue
Mar 18, 2022
Signed-off-by: Christian Eltzschig <me@elchris.org>
elfenpiff
added a commit
to ApexAI/iceoryx
that referenced
this issue
Mar 18, 2022
…markdown checks Signed-off-by: Christian Eltzschig <me@elchris.org>
elfenpiff
added a commit
to ApexAI/iceoryx
that referenced
this issue
Mar 18, 2022
Signed-off-by: Christian Eltzschig <me@elchris.org>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Required information
Operating system:
Windows
Compiler version:
Every compiler
Observed result or behaviour:
Spurious failures in the CI and in Windows can be caused by opening/closes constructs concurrently which are using underlying file handles.
Normally, one can open files concurrently without problem but in windows the
HandleTranslator
is used to provide an uniform access to file handles. This construct is not threadsafe - this has to be changed.The text was updated successfully, but these errors were encountered: