about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/i386/setfsgid.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-05-25 19:19:30 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-05-25 19:19:30 +0000
commit21708942c9b115a91dc03318a5f9e14328c5a71e (patch)
treee0b3797820e23ab73ebdab3c34d20943e911669b /sysdeps/unix/sysv/linux/i386/setfsgid.c
parenta386f1cc229e7de02740bef18bdd5d272d1e7537 (diff)
downloadglibc-21708942c9b115a91dc03318a5f9e14328c5a71e.tar.gz
glibc-21708942c9b115a91dc03318a5f9e14328c5a71e.tar.xz
glibc-21708942c9b115a91dc03318a5f9e14328c5a71e.zip
Remove pre-2.4 Linux kernel support.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/setfsgid.c')
-rw-r--r--sysdeps/unix/sysv/linux/i386/setfsgid.c40
1 files changed, 2 insertions, 38 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/setfsgid.c b/sysdeps/unix/sysv/linux/i386/setfsgid.c
index 12c66c5b6e..fe5fd86596 100644
--- a/sysdeps/unix/sysv/linux/i386/setfsgid.c
+++ b/sysdeps/unix/sysv/linux/i386/setfsgid.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 2000, 2003, 2006 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -22,48 +22,12 @@
 #include <sysdep.h>
 #include <sys/syscall.h>
 #include <linux/posix_types.h>
-#include <kernel-features.h>
 
-
-#ifdef __NR_setfsgid
-
-# ifdef __NR_setfsgid32
-#  if __ASSUME_32BITUIDS == 0
-/* This variable is shared with all files that need to check for 32bit
-   uids.  */
-extern int __libc_missing_32bit_uids attribute_hidden;
-#  endif
-# endif /* __NR_setfsgid32 */
+/* Consider moving to syscalls.list.  */
 
 int
 setfsgid (gid_t gid)
 {
   INTERNAL_SYSCALL_DECL (err);
-# if __ASSUME_32BITUIDS > 0
-  /* No error checking. */
   return INTERNAL_SYSCALL (setfsgid32, err, 1, gid);
-# else
-#  ifdef __NR_setfsgid32
-  if (__libc_missing_32bit_uids <= 0)
-    {
-      int result;
-
-      result = INTERNAL_SYSCALL (setfsgid32, err, 1, gid);
-      if (! INTERNAL_SYSCALL_ERROR_P (result, err)
-	  || INTERNAL_SYSCALL_ERRNO (result, err) != ENOSYS)
-	return result;
-
-      __libc_missing_32bit_uids = 1;
-    }
-#  endif /* __NR_setfsgid32 */
-  if (gid != (gid_t) ((__kernel_gid_t) gid))
-    {
-      __set_errno (EINVAL);
-      return -1;
-    }
-
-  /* No error checking. */
-  return INTERNAL_SYSCALL (setfsgid, err, 1, gid);
-# endif
 }
-#endif