mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
386916598e
Both x32 and x86-64 use the same struct semid64_ds for system calls. But x32 long is 32-bit. This patch replaces unsigned long with __kernel_ulong_t in x86 struct semid64_ds. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Link: http://lkml.kernel.org/r/1388182464-28428-7-git-send-email-hjl.tools@gmail.com Signed-off-by: H. Peter Anvin <hpa@zytor.com>
25 lines
714 B
C
25 lines
714 B
C
#ifndef _ASM_X86_SEMBUF_H
|
|
#define _ASM_X86_SEMBUF_H
|
|
|
|
/*
|
|
* The semid64_ds structure for x86 architecture.
|
|
* Note extra padding because this structure is passed back and forth
|
|
* between kernel and user space.
|
|
*
|
|
* Pad space is left for:
|
|
* - 64-bit time_t to solve y2038 problem
|
|
* - 2 miscellaneous 32-bit values
|
|
*/
|
|
struct semid64_ds {
|
|
struct ipc64_perm sem_perm; /* permissions .. see ipc.h */
|
|
__kernel_time_t sem_otime; /* last semop time */
|
|
__kernel_ulong_t __unused1;
|
|
__kernel_time_t sem_ctime; /* last change time */
|
|
__kernel_ulong_t __unused2;
|
|
__kernel_ulong_t sem_nsems; /* no. of semaphores in array */
|
|
__kernel_ulong_t __unused3;
|
|
__kernel_ulong_t __unused4;
|
|
};
|
|
|
|
#endif /* _ASM_X86_SEMBUF_H */
|