Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for libc_setreuid (0.15 sec)

  1. src/runtime/os2_aix.go

    //go:linkname libc_sigaltstack libc_sigaltstack
    //go:linkname libc_sysconf libc_sysconf
    //go:linkname libc_usleep libc_usleep
    //go:linkname libc_write libc_write
    //go:linkname libc_getuid libc_getuid
    //go:linkname libc_geteuid libc_geteuid
    //go:linkname libc_getgid libc_getgid
    //go:linkname libc_getegid libc_getegid
    
    //go:linkname libpthread___pth_init libpthread___pth_init
    //go:linkname libpthread_attr_destroy libpthread_attr_destroy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/runtime/syscall_solaris.go

    	libc_chdir,
    	libc_chroot,
    	libc_close,
    	libc_execve,
    	libc_fcntl,
    	libc_forkx,
    	libc_gethostname,
    	libc_getpid,
    	libc_ioctl,
    	libc_setgid,
    	libc_setgroups,
    	libc_setrlimit,
    	libc_setsid,
    	libc_setuid,
    	libc_setpgid,
    	libc_syscall,
    	libc_issetugid,
    	libc_wait4 libcFunc
    )
    
    // Many of these are exported via linkname to assembly in the syscall
    // package.
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/runtime/os_aix.go

    	r, errno := syscall0(&libc_getuid)
    	if errno != 0 {
    		print("getuid failed ", errno)
    		throw("getuid")
    	}
    	return int32(r)
    }
    
    //go:nosplit
    func geteuid() int32 {
    	r, errno := syscall0(&libc_geteuid)
    	if errno != 0 {
    		print("geteuid failed ", errno)
    		throw("geteuid")
    	}
    	return int32(r)
    }
    
    //go:nosplit
    func getgid() int32 {
    	r, errno := syscall0(&libc_getgid)
    	if errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top