1 /* Analogous to kernel struct semid64_ds used on semctl.  */
2 struct kernel_semid64_ds
3 {
4   struct ipc_perm sem_perm;
5   unsigned long sem_otime_high;
6   unsigned long sem_otime;
7   unsigned long sem_ctime_high;
8   unsigned long sem_ctime;
9   unsigned long sem_nsems;
10   unsigned long __ununsed1;
11   unsigned long __ununsed2;
12 };
13