diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-29 20:29:09 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-29 20:29:09 +0000 |
commit | 234a2e5c299c8f77a55430927675eb60055495d5 (patch) | |
tree | 772ce916ef2c594b0621ebd82138b6da9d3e169f /sys-libs | |
parent | mask kdebase-3.0.4-r1, which contains a fix for #9423 and is in testing (diff) | |
download | historical-234a2e5c299c8f77a55430927675eb60055495d5.tar.gz historical-234a2e5c299c8f77a55430927675eb60055495d5.tar.bz2 historical-234a2e5c299c8f77a55430927675eb60055495d5.zip |
removed html from patch --yikesvi files/2.2.5/glibc-2.2.5-sparc32-semctl.patch thanks again nall
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/files/2.2.5/glibc-2.2.5-sparc32-semctl.patch | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/sys-libs/glibc/files/2.2.5/glibc-2.2.5-sparc32-semctl.patch b/sys-libs/glibc/files/2.2.5/glibc-2.2.5-sparc32-semctl.patch index 9a83b0971e0a..9017b8bed5d3 100644 --- a/sys-libs/glibc/files/2.2.5/glibc-2.2.5-sparc32-semctl.patch +++ b/sys-libs/glibc/files/2.2.5/glibc-2.2.5-sparc32-semctl.patch @@ -1,11 +1,11 @@ --- libc/sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c.jj Fri Feb 11 20:44:42 2000 +++ libc/sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c Thu Apr 25 22:52:00 2002 @@ -1 +1,205 @@ --#include <sysdeps/unix/sysv/linux/i386/semctl.c> +-#include <sysdeps/unix/sysv/linux/i386/semctl.c> +/* Semctl for architectures where word sized unions are passed indirectly + Copyright (C) 1995, 1997, 1998, 2000, 2002 Free Software Foundation, Inc. + This file is part of the GNU C Library. -+ Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. ++ Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public @@ -22,17 +22,17 @@ + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + -+#include <errno.h> -+#include <stdarg.h> -+#include <sys/sem.h> -+#include <ipc_priv.h> ++#include <errno.h> ++#include <stdarg.h> ++#include <sys/sem.h> ++#include <ipc_priv.h> + -+#include <sysdep.h> -+#include <string.h> -+#include <sys/syscall.h> ++#include <sysdep.h> ++#include <string.h> ++#include <sys/syscall.h> + -+#include "kernel-features.h" -+#include <shlib-compat.h> ++#include "kernel-features.h" ++#include <shlib-compat.h> + +struct __old_semid_ds +{ @@ -50,13 +50,13 @@ +union semun +{ + int val; /* value for SETVAL */ -+ struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ -+ unsigned short int *array; /* array for GETALL & SETALL */ ++ struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ ++ unsigned short int *array; /* array for GETALL & SETALL */ + struct seminfo *__buf; /* buffer for IPC_INFO */ +}; + -+#include <bp-checks.h> -+#include <bp-semctl.h> /* definition of CHECK_SEMCTL needs union semum */ ++#include <bp-checks.h> ++#include <bp-semctl.h> /* definition of CHECK_SEMCTL needs union semum */ + +#ifdef __NR_getuid32 +# if __ASSUME_32BITUIDS == 0 @@ -99,7 +99,7 @@ + } + + return INLINE_SYSCALL (ipc, 5, IPCOP_semctl, semid, semnum, cmd, -+ CHECK_SEMCTL (&arg, semid, cmd)); ++ CHECK_SEMCTL (&arg, semid, cmd)); +} +compat_symbol (libc, __old_semctl, semctl, GLIBC_2_0); +#endif @@ -128,9 +128,9 @@ + break; + } + -+#if __ASSUME_32BITUIDS > 0 ++#if __ASSUME_32BITUIDS > 0 + return INLINE_SYSCALL (ipc, 5, IPCOP_semctl, semid, semnum, cmd | __IPC_64, -+ CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)); ++ CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)); +#else + switch (cmd) { + case SEM_STAT: @@ -139,7 +139,7 @@ + break; + default: + return INLINE_SYSCALL (ipc, 5, IPCOP_semctl, semid, semnum, cmd, -+ CHECK_SEMCTL (&arg, semid, cmd)); ++ CHECK_SEMCTL (&arg, semid, cmd)); + } + + { @@ -148,58 +148,58 @@ + struct semid_ds *buf; + +#ifdef __NR_getuid32 -+ if (__libc_missing_32bit_uids <= 0) ++ if (__libc_missing_32bit_uids <= 0) + { -+ if (__libc_missing_32bit_uids < 0) ++ if (__libc_missing_32bit_uids < 0) + { + int save_errno = errno; + + /* Test presence of new IPC by testing for getuid32 syscall. */ + result = INLINE_SYSCALL (getuid32, 0); -+ if (result == -1 && errno == ENOSYS) ++ if (result == -1 && errno == ENOSYS) + __libc_missing_32bit_uids = 1; + else + __libc_missing_32bit_uids = 0; + __set_errno(save_errno); + } -+ if (__libc_missing_32bit_uids <= 0) ++ if (__libc_missing_32bit_uids <= 0) + { + result = INLINE_SYSCALL (ipc, 5, IPCOP_semctl, semid, semnum, cmd | __IPC_64, -+ CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)); ++ CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)); + return result; + } + } +#endif + + buf = arg.buf; -+ arg.buf = (struct semid_ds *)&old; ++ arg.buf = (struct semid_ds *)&old; + if (cmd == IPC_SET) + { -+ old.sem_perm.uid = buf->sem_perm.uid; -+ old.sem_perm.gid = buf->sem_perm.gid; -+ old.sem_perm.mode = buf->sem_perm.mode; -+ if (old.sem_perm.uid != buf->sem_perm.uid || -+ old.sem_perm.gid != buf->sem_perm.gid) ++ old.sem_perm.uid = buf->sem_perm.uid; ++ old.sem_perm.gid = buf->sem_perm.gid; ++ old.sem_perm.mode = buf->sem_perm.mode; ++ if (old.sem_perm.uid != buf->sem_perm.uid || ++ old.sem_perm.gid != buf->sem_perm.gid) + { + __set_errno (EINVAL); + return -1; + } + } + result = INLINE_SYSCALL (ipc, 5, IPCOP_semctl, semid, semnum, cmd, -+ CHECK_SEMCTL (&arg, semid, cmd)); -+ if (result != -1 && cmd != IPC_SET) ++ CHECK_SEMCTL (&arg, semid, cmd)); ++ if (result != -1 && cmd != IPC_SET) + { + memset(buf, 0, sizeof(*buf)); -+ buf->sem_perm.__key = old.sem_perm.__key; -+ buf->sem_perm.uid = old.sem_perm.uid; -+ buf->sem_perm.gid = old.sem_perm.gid; -+ buf->sem_perm.cuid = old.sem_perm.cuid; -+ buf->sem_perm.cgid = old.sem_perm.cgid; -+ buf->sem_perm.mode = old.sem_perm.mode; -+ buf->sem_perm.__seq = old.sem_perm.__seq; -+ buf->sem_otime = old.sem_otime; -+ buf->sem_ctime = old.sem_ctime; -+ buf->sem_nsems = old.sem_nsems; ++ buf->sem_perm.__key = old.sem_perm.__key; ++ buf->sem_perm.uid = old.sem_perm.uid; ++ buf->sem_perm.gid = old.sem_perm.gid; ++ buf->sem_perm.cuid = old.sem_perm.cuid; ++ buf->sem_perm.cgid = old.sem_perm.cgid; ++ buf->sem_perm.mode = old.sem_perm.mode; ++ buf->sem_perm.__seq = old.sem_perm.__seq; ++ buf->sem_otime = old.sem_otime; ++ buf->sem_ctime = old.sem_ctime; ++ buf->sem_nsems = old.sem_nsems; + } + return result; + } |