Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sysvicall1Err (0.1 sec)

  1. src/runtime/os_solaris.go

    	}
    	return libcall.r1
    }
    
    //go:nosplit
    func sysvicall1(fn *libcFunc, a1 uintptr) uintptr {
    	r1, _ := sysvicall1Err(fn, a1)
    	return r1
    }
    
    // sysvicall1Err returns both the system call result and the errno value.
    // This is used by sysvicall1 and pipe.
    //
    //go:nosplit
    func sysvicall1Err(fn *libcFunc, a1 uintptr) (r1, err uintptr) {
    	// Leave caller's PC/SP around for traceback.
    	gp := getg()
    	var mp *m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top