Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sys_setreuid (0.13 sec)

  1. src/syscall/setuidgid_linux.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && !386 && !arm
    
    package syscall
    
    const (
    	sys_GETEUID = SYS_GETEUID
    
    	sys_SETGID = SYS_SETGID
    	sys_SETUID = SYS_SETUID
    
    	sys_SETREGID = SYS_SETREGID
    	sys_SETREUID = SYS_SETREUID
    
    	sys_SETRESGID = SYS_SETRESGID
    	sys_SETRESUID = SYS_SETRESUID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 421 bytes
    - Viewed (0)
  2. src/syscall/setuidgid_32_linux.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (386 || arm)
    
    package syscall
    
    const (
    	sys_GETEUID = SYS_GETEUID32
    
    	sys_SETGID = SYS_SETGID32
    	sys_SETUID = SYS_SETUID32
    
    	sys_SETREGID = SYS_SETREGID32
    	sys_SETREUID = SYS_SETREUID32
    
    	sys_SETRESGID = SYS_SETRESGID32
    	sys_SETRESUID = SYS_SETRESUID32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 435 bytes
    - Viewed (0)
  3. src/syscall/zsysnum_linux_riscv64.go

    	SYS_GETPRIORITY            = 141
    	SYS_REBOOT                 = 142
    	SYS_SETREGID               = 143
    	SYS_SETGID                 = 144
    	SYS_SETREUID               = 145
    	SYS_SETUID                 = 146
    	SYS_SETRESUID              = 147
    	SYS_GETRESUID              = 148
    	SYS_SETRESGID              = 149
    	SYS_GETRESGID              = 150
    	SYS_SETFSUID               = 151
    	SYS_SETFSGID               = 152
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_linux_arm64.go

    	SYS_GETPRIORITY            = 141
    	SYS_REBOOT                 = 142
    	SYS_SETREGID               = 143
    	SYS_SETGID                 = 144
    	SYS_SETREUID               = 145
    	SYS_SETUID                 = 146
    	SYS_SETRESUID              = 147
    	SYS_GETRESUID              = 148
    	SYS_SETRESGID              = 149
    	SYS_GETRESGID              = 150
    	SYS_SETFSUID               = 151
    	SYS_SETFSGID               = 152
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  5. src/syscall/export_linux_test.go

    package syscall
    
    import (
    	"unsafe"
    )
    
    var (
    	RawSyscallNoError = rawSyscallNoError
    	ForceClone3       = &forceClone3
    	Prlimit           = prlimit
    )
    
    const (
    	Sys_GETEUID = sys_GETEUID
    )
    
    func Tcgetpgrp(fd int) (pgid int32, err error) {
    	_, _, errno := Syscall6(SYS_IOCTL, uintptr(fd), uintptr(TIOCGPGRP), uintptr(unsafe.Pointer(&pgid)), 0, 0, 0)
    	if errno != 0 {
    		return -1, errno
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:18:19 UTC 2024
    - 775 bytes
    - Viewed (0)
Back to top