We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 448abcf + 3d3392b commit dc4c75dCopy full SHA for dc4c75d
src/unix/linux_like/linux/musl/b64/mips64.rs
@@ -56,6 +56,12 @@ s! {
56
__pad5: [c_int; 14],
57
}
58
59
+ pub struct stack_t {
60
+ pub ss_sp: *mut c_void,
61
+ pub ss_size: size_t,
62
+ pub ss_flags: c_int,
63
+ }
64
+
65
pub struct ipc_perm {
66
#[cfg(musl_v1_2_3)]
67
pub __key: crate::key_t,
src/unix/linux_like/linux/musl/b64/mod.rs
@@ -3,6 +3,8 @@ use crate::prelude::*;
3
pub type regoff_t = c_long;
4
5
s! {
6
+ // MIPS implementation is special, see the subfolder.
7
+ #[cfg(not(target_arch = "mips64"))]
8
pub struct stack_t {
9
pub ss_sp: *mut c_void,
10
pub ss_flags: c_int,
0 commit comments