-
Notifications
You must be signed in to change notification settings - Fork 348
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
can't call foreign function __libc_current_sigrtmin
#2832
Comments
Yeah that should be easy to add in Miri. |
Merged
LegNeato
added a commit
to LegNeato/miri
that referenced
this issue
Apr 11, 2023
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Apr 28, 2023
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Apr 28, 2023
Add shim for SIGRTMIN Fixes rust-lang/miri#2832.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
__libc_current_sigrtmax
is present (and so I can uselibc::SIGRTMAX()
without issue), but not__libc_current_sigrtmin
for some reason (preventing me from usinglibc::SIGRTMIN()
).I could easily shim this to 35 for practical testing purposes (kernel starts at 32, glibc reserves 3 for its threading library), but it'd be nice to not have to hack that in.
The text was updated successfully, but these errors were encountered: