switch all existing 32-bit archs to 64-bit time_t
[musl] / arch / mipsn32 / bits / shm.h
index 8d19378..ab8c642 100644 (file)
@@ -3,14 +3,19 @@
 struct shmid_ds {
        struct ipc_perm shm_perm;
        size_t shm_segsz;
-       time_t shm_atime;
-       time_t shm_dtime;
-       time_t shm_ctime;
+       unsigned long __shm_atime_lo;
+       unsigned long __shm_dtime_lo;
+       unsigned long __shm_ctime_lo;
        pid_t shm_cpid;
        pid_t shm_lpid;
        unsigned long shm_nattch;
-       unsigned long __pad1;
-       unsigned long __pad2;
+       unsigned short __shm_atime_hi;
+       unsigned short __shm_dtime_hi;
+       unsigned short __shm_ctime_hi;
+       unsigned short __pad1;
+       time_t shm_atime;
+       time_t shm_dtime;
+       time_t shm_ctime;
 };
 
 struct shminfo {