-
-
Notifications
You must be signed in to change notification settings - Fork 652
Fix #21280 - Add __NR_getrandom
aka SYS_getrandom
#21300
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
Conversation
Buildkite failure looks unrelated: gecko0307/dagon#106 |
dlang/phobos#10748 depends on this addition to D runtime. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise looks good
// <asm/unistd.h> | ||
// List the numbers of the system calls the system knows. | ||
version (X86_64) | ||
{ | ||
version (D_X32) | ||
enum __NR_perf_event_open = 0x40000000 + 298; | ||
{ | ||
enum __X32_SYSCALL_BIT = 0x40000000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this symbol is better private
, it's not useful outside this module.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alright :)
FreeBSD failure looks unrelated:
|
Yeah, let's do this. |
No description provided.