Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for sys_geteuid (0.12 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/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)
  3. 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)
  4. src/syscall/zsysnum_darwin_arm64.go

    	SYS_CHMOD                          = 15
    	SYS_CHOWN                          = 16
    	SYS_GETFSSTAT                      = 18
    	SYS_GETPID                         = 20
    	SYS_SETUID                         = 23
    	SYS_GETUID                         = 24
    	SYS_GETEUID                        = 25
    	SYS_PTRACE                         = 26
    	SYS_RECVMSG                        = 27
    	SYS_SENDMSG                        = 28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_linux_riscv64.go

    	SYS_GETTIMEOFDAY           = 169
    	SYS_SETTIMEOFDAY           = 170
    	SYS_ADJTIMEX               = 171
    	SYS_GETPID                 = 172
    	SYS_GETPPID                = 173
    	SYS_GETUID                 = 174
    	SYS_GETEUID                = 175
    	SYS_GETGID                 = 176
    	SYS_GETEGID                = 177
    	SYS_GETTID                 = 178
    	SYS_SYSINFO                = 179
    	SYS_MQ_OPEN                = 180
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_openbsd_arm64.go

    	SYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, \
    	SYS_GETPID         = 20  // { pid_t sys_getpid(void); }
    	SYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, \
    	SYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }
    	SYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }
    	SYS_GETUID         = 24  // { uid_t sys_getuid(void); }
    	SYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_darwin_amd64.go

    	SYS_CHMOD                          = 15
    	SYS_CHOWN                          = 16
    	SYS_GETFSSTAT                      = 18
    	SYS_GETPID                         = 20
    	SYS_SETUID                         = 23
    	SYS_GETUID                         = 24
    	SYS_GETEUID                        = 25
    	SYS_PTRACE                         = 26
    	SYS_RECVMSG                        = 27
    	SYS_SENDMSG                        = 28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, \
    	SYS_GETPID         = 20  // { pid_t sys_getpid(void); }
    	SYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, \
    	SYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }
    	SYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }
    	SYS_GETUID         = 24  // { uid_t sys_getuid(void); }
    	SYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_linux_arm64.go

    	SYS_GETTIMEOFDAY           = 169
    	SYS_SETTIMEOFDAY           = 170
    	SYS_ADJTIMEX               = 171
    	SYS_GETPID                 = 172
    	SYS_GETPPID                = 173
    	SYS_GETUID                 = 174
    	SYS_GETEUID                = 175
    	SYS_GETGID                 = 176
    	SYS_GETEGID                = 177
    	SYS_GETTID                 = 178
    	SYS_SYSINFO                = 179
    	SYS_MQ_OPEN                = 180
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_386.go

    	SYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, \
    	SYS_GETPID         = 20  // { pid_t sys_getpid(void); }
    	SYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, \
    	SYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }
    	SYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }
    	SYS_GETUID         = 24  // { uid_t sys_getuid(void); }
    	SYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
Back to top