switch all existing 32-bit archs to 64-bit time_t
[oweals/musl.git] / arch / mips / bits / shm.h
index 8d19378191bacd8a43080a7f96027befcfd30e4c..ab8c642d825aba458641de167f3e250f6f3c4514 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 {