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.
1 parent 254393b commit f70a60eCopy full SHA for f70a60e
src/sys/signal.rs
@@ -115,14 +115,14 @@ pub mod signal {
115
}
116
117
#[repr(C)]
118
- #[cfg(target_word_size = "32")]
+ #[cfg(target_pointer_width = "32")]
119
#[derive(Copy)]
120
pub struct sigset_t {
121
__val: [libc::c_ulong; 32],
122
123
124
125
- #[cfg(target_word_size = "64")]
+ #[cfg(target_pointer_width = "64")]
126
127
128
__val: [libc::c_ulong; 16],
0 commit comments