|
@@ -192,10 +192,10 @@ struct compat_ipc64_perm {
|
|
|
|
|
|
struct compat_semid64_ds {
|
|
|
struct compat_ipc64_perm sem_perm;
|
|
|
- unsigned int __pad1;
|
|
|
- compat_time_t sem_otime;
|
|
|
- unsigned int __pad2;
|
|
|
- compat_time_t sem_ctime;
|
|
|
+ unsigned int sem_otime_high;
|
|
|
+ unsigned int sem_otime;
|
|
|
+ unsigned int sem_ctime_high;
|
|
|
+ unsigned int sem_ctime;
|
|
|
u32 sem_nsems;
|
|
|
u32 __unused1;
|
|
|
u32 __unused2;
|
|
@@ -203,12 +203,12 @@ struct compat_semid64_ds {
|
|
|
|
|
|
struct compat_msqid64_ds {
|
|
|
struct compat_ipc64_perm msg_perm;
|
|
|
- unsigned int __pad1;
|
|
|
- compat_time_t msg_stime;
|
|
|
- unsigned int __pad2;
|
|
|
- compat_time_t msg_rtime;
|
|
|
- unsigned int __pad3;
|
|
|
- compat_time_t msg_ctime;
|
|
|
+ unsigned int msg_stime_high;
|
|
|
+ unsigned int msg_stime;
|
|
|
+ unsigned int msg_rtime_high;
|
|
|
+ unsigned int msg_rtime;
|
|
|
+ unsigned int msg_ctime_high;
|
|
|
+ unsigned int msg_ctime;
|
|
|
unsigned int msg_cbytes;
|
|
|
unsigned int msg_qnum;
|
|
|
unsigned int msg_qbytes;
|
|
@@ -220,12 +220,12 @@ struct compat_msqid64_ds {
|
|
|
|
|
|
struct compat_shmid64_ds {
|
|
|
struct compat_ipc64_perm shm_perm;
|
|
|
- unsigned int __pad1;
|
|
|
- compat_time_t shm_atime;
|
|
|
- unsigned int __pad2;
|
|
|
- compat_time_t shm_dtime;
|
|
|
- unsigned int __pad3;
|
|
|
- compat_time_t shm_ctime;
|
|
|
+ unsigned int shm_atime_high;
|
|
|
+ unsigned int shm_atime;
|
|
|
+ unsigned int shm_dtime_high;
|
|
|
+ unsigned int shm_dtime;
|
|
|
+ unsigned int shm_ctime_high;
|
|
|
+ unsigned int shm_ctime;
|
|
|
compat_size_t shm_segsz;
|
|
|
compat_pid_t shm_cpid;
|
|
|
compat_pid_t shm_lpid;
|