We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
These are the correct definitions:
pub const CLONE_NEWUTS: ::c_int = 0x04000000; pub const CLONE_NEWIPC: ::c_int = 0x08000000; pub const CLONE_NEWUSER: ::c_int = 0x10000000; pub const CLONE_NEWPID: ::c_int = 0x20000000; pub const CLONE_NEWNET: ::c_int = 0x40000000; pub const CLONE_IO: ::c_int = 0x80000000;
These are #define in vi /usr/include/linux/sched.h
They must be c_int because:
The text was updated successfully, but these errors were encountered:
Ah probably a mistake on my part, feel free to submit a PR!
Sorry, something went wrong.
I believe this was fixed.
fixed _mm_set_pd and _mm_setr_pd by reversing order (rust-lang#124)
13d2384
No branches or pull requests
These are the correct definitions:
pub const CLONE_NEWUTS: ::c_int = 0x04000000;
pub const CLONE_NEWIPC: ::c_int = 0x08000000;
pub const CLONE_NEWUSER: ::c_int = 0x10000000;
pub const CLONE_NEWPID: ::c_int = 0x20000000;
pub const CLONE_NEWNET: ::c_int = 0x40000000;
pub const CLONE_IO: ::c_int = 0x80000000;
These are #define in vi /usr/include/linux/sched.h
They must be c_int because:
The text was updated successfully, but these errors were encountered: