Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPipe2Addr (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s

    // license that can be found in the LICENSE file.
    
    //go:build zos && s390x && gc
    
    #include "textflag.h"
    
    //  provide the address of function variable to be fixed up.
    
    TEXT ·getPipe2Addr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Pipe2(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_FlockAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Flock(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // Pipe2 begin
    
    //go:nosplit
    func getPipe2Addr() *(func([]int, int) error)
    
    var Pipe2 = pipe2Enter
    
    func pipe2Enter(p []int, flags int) (err error) {
    	if funcptrtest(GetZosLibVec()+SYS_PIPE2<<4, "") == 0 {
    		*getPipe2Addr() = pipe2Impl
    	} else {
    		*getPipe2Addr() = pipe2Error
    	}
    	return (*getPipe2Addr())(p, flags)
    }
    
    func pipe2Impl(p []int, flags int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top