@@ -108,23 +108,6 @@ s! {
108
108
__f_spare: [ :: c_int; 6 ] ,
109
109
}
110
110
111
- pub struct shmid_ds {
112
- pub shm_perm: :: ipc_perm,
113
- __glibc_reserved1: :: c_uint,
114
- pub shm_atime: :: time_t,
115
- __glibc_reserved2: :: c_uint,
116
- pub shm_dtime: :: time_t,
117
- __glibc_reserved3: :: c_uint,
118
- pub shm_ctime: :: time_t,
119
- __glibc_reserved4: :: c_uint,
120
- pub shm_segsz: :: size_t,
121
- pub shm_cpid: :: pid_t,
122
- pub shm_lpid: :: pid_t,
123
- pub shm_nattch: :: shmatt_t,
124
- __glibc_reserved5: :: c_ulong,
125
- __glibc_reserved6: :: c_ulong,
126
- }
127
-
128
111
pub struct msqid_ds {
129
112
pub msg_perm: :: ipc_perm,
130
113
__glibc_reserved1: :: c_uint,
@@ -830,3 +813,13 @@ pub const SYS_memfd_secret: ::c_long = 447;
830
813
pub const SYS_process_mrelease : :: c_long = 448 ;
831
814
pub const SYS_futex_waitv : :: c_long = 449 ;
832
815
pub const SYS_set_mempolicy_home_node : :: c_long = 450 ;
816
+
817
+ cfg_if ! {
818
+ if #[ cfg( gnu_time64_abi) ] {
819
+ mod time64;
820
+ pub use self :: time64:: * ;
821
+ } else {
822
+ mod time32;
823
+ pub use self :: time32:: * ;
824
+ }
825
+ }
0 commit comments