]> git.ipfire.org Git - people/ms/linux.git/blob - include/asm-ppc/sembuf.h
Linux-2.6.12-rc2
[people/ms/linux.git] / include / asm-ppc / sembuf.h
1 #ifndef _PPC_SEMBUF_H
2 #define _PPC_SEMBUF_H
3
4 /*
5 * The semid64_ds structure for PPC architecture.
6 */
7
8 struct semid64_ds {
9 struct ipc64_perm sem_perm; /* permissions .. see ipc.h */
10 unsigned int __unused1;
11 __kernel_time_t sem_otime; /* last semop time */
12 unsigned int __unused2;
13 __kernel_time_t sem_ctime; /* last change time */
14 unsigned long sem_nsems; /* no. of semaphores in array */
15 unsigned long __unused3;
16 unsigned long __unused4;
17 };
18
19 #endif /* _PPC_SEMBUF_H */