File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
src/unix/linux_like/linux/musl/b64 Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 17
17
__val: [ c_ulong; 16 ] ,
18
18
}
19
19
20
+ // PowerPC implementation is special, see the subfolder.
21
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
20
22
pub struct shmid_ds {
21
23
pub shm_perm: crate :: ipc_perm,
22
24
pub shm_segsz: size_t,
Original file line number Diff line number Diff line change 61
61
__reserved: [ c_long; 3 ] ,
62
62
}
63
63
64
+ pub struct shmid_ds {
65
+ pub shm_perm: crate :: ipc_perm,
66
+ pub shm_atime: crate :: time_t,
67
+ pub shm_dtime: crate :: time_t,
68
+ pub shm_ctime: crate :: time_t,
69
+ pub shm_segsz: size_t,
70
+ pub shm_cpid: crate :: pid_t,
71
+ pub shm_lpid: crate :: pid_t,
72
+ pub shm_nattch: c_ulong,
73
+ __unused: [ c_ulong; 2 ] ,
74
+ }
75
+
64
76
pub struct ipc_perm {
65
77
#[ cfg( musl_v1_2_3) ]
66
78
pub __key: crate :: key_t,
You can’t perform that action at this time.
0 commit comments