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 a7c0dcf commit 3c1b0eeCopy full SHA for 3c1b0ee
src/unix/solarish/mod.rs
@@ -220,6 +220,9 @@ s! {
220
pub struct shmid_ds {
221
pub shm_perm: ipc_perm,
222
pub shm_segsz: ::size_t,
223
+ #[cfg(target_os = "illumos")]
224
+ pub shm_amp: *mut ::c_void,
225
+ #[cfg(target_os = "solaris")]
226
pub shm_flags: ::uintptr_t,
227
pub shm_lkcnt: ::c_ushort,
228
pub shm_lpid: ::pid_t,
@@ -229,9 +232,15 @@ s! {
229
232
pub shm_atime: ::time_t,
230
233
pub shm_dtime: ::time_t,
231
234
pub shm_ctime: ::time_t,
235
236
+ pub shm_pad4: [i64; 4],
237
238
pub shm_amp: *mut ::c_void,
239
240
pub shm_gransize: u64,
241
242
pub shm_allocated: u64,
243
244
pub shm_pad4: [i64; 1],
245
}
246
0 commit comments