diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-11-12 01:15:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-11-12 01:15:06 +0000 |
commit | 85bd63313720ed5e7f10427ec5f0d2f59ee23614 (patch) | |
tree | c370d07825bc9f517c39de279a4b92650ad4c836 /sysdeps/unix/sysv/linux/i386/setregid.c | |
parent | 29311370cd23623cc227a67c54ae3bdd0f7d7058 (diff) | |
download | glibc-85bd63313720ed5e7f10427ec5f0d2f59ee23614.tar.gz glibc-85bd63313720ed5e7f10427ec5f0d2f59ee23614.tar.xz glibc-85bd63313720ed5e7f10427ec5f0d2f59ee23614.zip |
Remove sys/syscall.h, sys/types.h, linux/posix_types.h, sysdep.h and pthread-functions.h includes. Include setxid.h. Use INLINE_SETXID_SYSCALL macro instead of INLINE_SYSCALL, kill the HAVE_PTR__NPTL_SETXID guarded snippets.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/setregid.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/setregid.c | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/setregid.c b/sysdeps/unix/sysv/linux/i386/setregid.c index f883497fae..be7870d3b7 100644 --- a/sysdeps/unix/sysv/linux/i386/setregid.c +++ b/sysdeps/unix/sysv/linux/i386/setregid.c @@ -17,15 +17,9 @@ 02111-1307 USA. */ #include <errno.h> -#include <sys/types.h> #include <unistd.h> - -#include <sysdep.h> -#include <sys/syscall.h> - -#include <linux/posix_types.h> +#include <setxid.h> #include "kernel-features.h" -#include <pthread-functions.h> #ifdef __NR_setregid32 @@ -42,14 +36,14 @@ __setregid (gid_t rgid, gid_t egid) int result; #if __ASSUME_32BITUIDS > 0 - result = INLINE_SYSCALL (setregid32, 2, rgid, egid); + result = INLINE_SETXID_SYSCALL (setregid32, 2, rgid, egid); #else # ifdef __NR_setregid32 if (__libc_missing_32bit_uids <= 0) { int saved_errno = errno; - result = INLINE_SYSCALL (setregid32, 2, rgid, egid); + result = INLINE_SETXID_SYSCALL (setregid32, 2, rgid, egid); if (result == 0) goto out; @@ -67,23 +61,12 @@ __setregid (gid_t rgid, gid_t egid) return -1; } - result = INLINE_SYSCALL (setregid, 2, rgid, egid); + result = INLINE_SETXID_SYSCALL (setregid, 2, rgid, egid); # ifdef __NR_setregid32 out: # endif #endif -#if defined HAVE_PTR__NPTL_SETXID && !defined SINGLE_THREAD - if (result == 0 && __libc_pthread_functions.ptr__nptl_setxid != NULL) - { - struct xid_command cmd; - cmd.syscall_no = __NR_setregid32; - cmd.id[0] = rgid; - cmd.id[1] = egid; - __libc_pthread_functions.ptr__nptl_setxid (&cmd); - } -#endif - return result; } #ifndef __setregid |