-
Notifications
You must be signed in to change notification settings - Fork 344
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
Android: make std thread APIs work #3618
Comments
@rustbot claim |
How should the code be refactored to share the How do you see the refactoring? |
The easiest thing to do for futexes seems to be to move the Linux
That could do the same, have a function in the |
Got you, thanks! There's one thing which is unclear to me. How do you decide what Miri should cover and in which cases? Since the issue is about |
Generally we want to support what std needs. On top of that if things are widely used out there we'll consider adding support for them (if the API can be implemented and maintained with reasonable effort). For |
Android: Added support for prctl handling thread names Addresses the first part of #3618.
Basic thread spawning works on Android, but some things are still missing:
prctl
commandsPR_SET_NAME
andPR_GET_NAME
.(Also, we're looking for a target maintainer for Android, so please let us know if you're up to that -- basically someone we'd ping when there are Android questions, and in case std starts using a new Android API we'd hope they would be able to provide a Miri implementation.)
The text was updated successfully, but these errors were encountered: