2006-06-05 06:17:06 +08:00
|
|
|
/* SETxID functions which only have to change the local thread and
|
|
|
|
none of the possible other threads. */
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
2012-05-26 03:19:30 +08:00
|
|
|
#ifdef __NR_setresuid32
|
2006-06-05 06:17:06 +08:00
|
|
|
# define local_seteuid(id) INLINE_SYSCALL (setresuid32, 3, -1, id, -1)
|
|
|
|
#else
|
2012-05-26 03:19:30 +08:00
|
|
|
# define local_seteuid(id) INLINE_SYSCALL (setresuid, 3, -1, id, -1)
|
2006-06-05 06:17:06 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-05-26 03:19:30 +08:00
|
|
|
#ifdef __NR_setresgid32
|
2006-06-05 06:17:06 +08:00
|
|
|
# define local_setegid(id) INLINE_SYSCALL (setresgid32, 3, -1, id, -1)
|
|
|
|
#else
|
2012-05-26 03:19:30 +08:00
|
|
|
# define local_setegid(id) INLINE_SYSCALL (setresgid, 3, -1, id, -1)
|
2006-06-05 06:17:06 +08:00
|
|
|
#endif
|