about summary refs log tree commit diff
path: root/REORG.TODO/sysdeps/unix/sysv/linux/local-setxid.h
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/sysdeps/unix/sysv/linux/local-setxid.h')
-rw-r--r--REORG.TODO/sysdeps/unix/sysv/linux/local-setxid.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/REORG.TODO/sysdeps/unix/sysv/linux/local-setxid.h b/REORG.TODO/sysdeps/unix/sysv/linux/local-setxid.h
new file mode 100644
index 0000000000..97d787d942
--- /dev/null
+++ b/REORG.TODO/sysdeps/unix/sysv/linux/local-setxid.h
@@ -0,0 +1,16 @@
+/* SETxID functions which only have to change the local thread and
+   none of the possible other threads.  */
+#include <sysdep.h>
+
+#ifdef __NR_setresuid32
+# define local_seteuid(id) INLINE_SYSCALL (setresuid32, 3, -1, id, -1)
+#else
+# define local_seteuid(id) INLINE_SYSCALL (setresuid, 3, -1, id, -1)
+#endif
+
+
+#ifdef __NR_setresgid32
+# define local_setegid(id) INLINE_SYSCALL (setresgid32, 3, -1, id, -1)
+#else
+# define local_setegid(id) INLINE_SYSCALL (setresgid, 3, -1, id, -1)
+#endif