Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for callsetregid (0.21 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go

    func Setregid(rgid int, egid int) (err error) {
    	_, e1 := callsetregid(rgid, egid)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setreuid(ruid int, euid int) (err error) {
    	_, e1 := callsetreuid(ruid, euid)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callsetregid(rgid int, egid int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.setregid(C.int(rgid), C.int(egid)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callsetreuid(ruid int, euid int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.setreuid(C.int(ruid), C.int(euid)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callsetregid(rgid int, egid int) (r1 uintptr, e1 Errno) {
    	r1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setregid)), 2, uintptr(rgid), uintptr(egid), 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callsetreuid(ruid int, euid int) (r1 uintptr, e1 Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
Back to top