Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.19-rc5 29 lines 746 B view raw
1#ifndef _ASM_M32R_SEMBUF_H 2#define _ASM_M32R_SEMBUF_H 3 4/* $Id$ */ 5 6/* orig : i386 2.4.18 */ 7 8/* 9 * The semid64_ds structure for m32r architecture. 10 * Note extra padding because this structure is passed back and forth 11 * between kernel and user space. 12 * 13 * Pad space is left for: 14 * - 64-bit time_t to solve y2038 problem 15 * - 2 miscellaneous 32-bit values 16 */ 17 18struct semid64_ds { 19 struct ipc64_perm sem_perm; /* permissions .. see ipc.h */ 20 __kernel_time_t sem_otime; /* last semop time */ 21 unsigned long __unused1; 22 __kernel_time_t sem_ctime; /* last change time */ 23 unsigned long __unused2; 24 unsigned long sem_nsems; /* no. of semaphores in array */ 25 unsigned long __unused3; 26 unsigned long __unused4; 27}; 28 29#endif /* _ASM_M32R_SEMBUF_H */