Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetErrno (0.13 sec)

  1. 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 callgetppid() (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.getppid())
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callgetpriority(which int, who int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.getpriority(C.int(which), C.int(who)))
    	e1 = syscall.GetErrno()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go

    	"syscall"
    )
    
    //extern getsystemcfg
    func gccgoGetsystemcfg(label uint32) (r uint64)
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 syscall.Errno) {
    	r1 = uintptr(gccgoGetsystemcfg(uint32(label)))
    	e1 = syscall.GetErrno()
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 726 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go

    package unix
    
    import "syscall"
    
    //extern gettimeofday
    func realGettimeofday(*Timeval, *byte) int32
    
    func gettimeofday(tv *Timeval) (err syscall.Errno) {
    	r := realGettimeofday(tv, nil)
    	if r < 0 {
    		return syscall.GetErrno()
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 436 bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    			fmt.Fprint(fgo2, "\tsyscall.Cgocall()\n")
    		}
    		if n.AddError {
    			fmt.Fprint(fgo2, "\tsyscall.SetErrno(0)\n")
    		}
    		fmt.Fprint(fgo2, "\t")
    		if !void {
    			fmt.Fprint(fgo2, "r := ")
    		}
    		fmt.Fprintf(fgo2, "%s(%s)\n", cname, strings.Join(paramnames, ", "))
    
    		if n.AddError {
    			fmt.Fprint(fgo2, "\te := syscall.GetErrno()\n")
    			fmt.Fprint(fgo2, "\tif e != 0 {\n")
    			fmt.Fprint(fgo2, "\t\treturn ")
    			if !void {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top