diff options
Diffstat (limited to 'internal/syscallcompat/thread_credentials_368_arm.go')
-rw-r--r-- | internal/syscallcompat/thread_credentials_368_arm.go | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/internal/syscallcompat/thread_credentials_368_arm.go b/internal/syscallcompat/thread_credentials_368_arm.go deleted file mode 100644 index 1244160..0000000 --- a/internal/syscallcompat/thread_credentials_368_arm.go +++ /dev/null @@ -1,35 +0,0 @@ -//go:build (linux && 386) || (linux && arm) - -package syscallcompat - -import ( - "unsafe" - - "golang.org/x/sys/unix" -) - -// See thread_credentials.go for docs - -func Setreuid(ruid int, euid int) (err error) { - _, _, e1 := unix.RawSyscall(unix.SYS_SETREUID32, uintptr(ruid), uintptr(euid), 0) - if e1 != 0 { - err = e1 - } - return -} - -func Setregid(rgid int, egid int) (err error) { - _, _, e1 := unix.RawSyscall(unix.SYS_SETREGID32, uintptr(rgid), uintptr(egid), 0) - if e1 != 0 { - err = e1 - } - return -} - -func setgroups(n int, list *uint32) (err error) { - _, _, e1 := unix.RawSyscall(unix.SYS_SETGROUPS32, uintptr(n), uintptr(unsafe.Pointer(list)), 0) - if e1 != 0 { - err = e1 - } - return -} |