Skip to content

Commit 0ee154e

Browse files
wesleywisermyl7
authored andcommitted
Update arm to musl 1.2.3
1 parent 8cc3c72 commit 0ee154e

File tree

1 file changed

+21
-15
lines changed
  • src/unix/linux_like/linux/musl/b32/arm

1 file changed

+21
-15
lines changed

src/unix/linux_like/linux/musl/b32/arm/mod.rs

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,34 +55,40 @@ s! {
5555
pub struct shmid_ds {
5656
pub shm_perm: ::ipc_perm,
5757
pub shm_segsz: ::size_t,
58-
pub shm_atime: ::time_t,
59-
__unused1: ::c_int,
60-
pub shm_dtime: ::time_t,
61-
__unused2: ::c_int,
62-
pub shm_ctime: ::time_t,
63-
__unused3: ::c_int,
58+
__shm_atime_lo: ::c_ulong,
59+
__shm_atime_hi: ::c_ulong,
60+
__shm_dtime_lo: ::c_ulong,
61+
__shm_dtime_hi: ::c_ulong,
62+
__shm_ctime_lo: ::c_ulong,
63+
__shm_ctime_hi: ::c_ulong,
6464
pub shm_cpid: ::pid_t,
6565
pub shm_lpid: ::pid_t,
6666
pub shm_nattch: ::c_ulong,
6767
__pad1: ::c_ulong,
6868
__pad2: ::c_ulong,
69+
__pad3: ::c_ulong,
70+
pub shm_atime: ::time_t,
71+
pub shm_dtime: ::time_t,
72+
pub shm_ctime: ::time_t,
6973
}
7074

7175
pub struct msqid_ds {
7276
pub msg_perm: ::ipc_perm,
73-
pub msg_stime: ::time_t,
74-
__unused1: ::c_int,
75-
pub msg_rtime: ::time_t,
76-
__unused2: ::c_int,
77-
pub msg_ctime: ::time_t,
78-
__unused3: ::c_int,
79-
__msg_cbytes: ::c_ulong,
77+
__msg_stime_lo: ::c_ulong,
78+
__msg_stime_hi: ::c_ulong,
79+
__msg_rtime_lo: ::c_ulong,
80+
__msg_rtime_hi: ::c_ulong,
81+
__msg_ctime_lo: ::c_ulong,
82+
__msg_ctime_hi: ::c_ulong,
83+
pub msg_cbytes: ::c_ulong,
8084
pub msg_qnum: ::msgqnum_t,
8185
pub msg_qbytes: ::msglen_t,
8286
pub msg_lspid: ::pid_t,
8387
pub msg_lrpid: ::pid_t,
84-
__pad1: ::c_ulong,
85-
__pad2: ::c_ulong,
88+
__unused: [::c_ulong; 2],
89+
pub msg_stime: ::time_t,
90+
pub msg_rtime: ::time_t,
91+
pub msg_ctime: ::time_t,
8692
}
8793

8894
pub struct statfs {

0 commit comments

Comments
 (0)