Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for __errno2 (0.21 sec)

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

    	// Get library control area (LCA).
    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    
    	// Get __errno FuncDesc.
    	MOVD CAA(R8), R9
    	MOVD EDCHPXV(R9), R9
    	ADD  $(__errno), R9
    	LMG  0(R9), R5, R6
    
    	// Switch to saved LE stack.
    	MOVD SAVSTACK_ASYNC(R8), R9
    	MOVD 0(R9), R4
    	MOVD $0, 0(R9)
    
    	// Call __errno function.
    	LE_CALL
    	NOPH
    
    	// Switch back to Go stack.
    	XOR  R0, R0    // Restore R0 to $0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/net/cgo_unix.go

    		return nil, errors.New("res_ninit failure: " + err.Error())
    	}
    	defer _C_res_nclose(state)
    
    	// Some res_nsearch implementations (like macOS) do not set errno.
    	// They set h_errno, which is not per-thread and useless to us.
    	// res_nsearch returns the size of the DNS response packet.
    	// But if the DNS response packet contains failure-like response codes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/runtime/os3_solaris.go

    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    //go:cgo_export_dynamic runtime.end _end
    //go:cgo_export_dynamic runtime.etext _etext
    //go:cgo_export_dynamic runtime.edata _edata
    
    //go:cgo_import_dynamic libc____errno ___errno "libc.so"
    //go:cgo_import_dynamic libc_clock_gettime clock_gettime "libc.so"
    //go:cgo_import_dynamic libc_exit _exit "libc.so"
    //go:cgo_import_dynamic libc_getcontext getcontext "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/runtime/os2_aix.go

    //go:linkname libc___n_pthreads libc___n_pthreads
    //go:linkname libc___mod_init libc___mod_init
    
    var (
    	libc___n_pthreads,
    	libc___mod_init libFunc
    )
    
    // Syscalls
    
    //go:cgo_import_dynamic libc__Errno _Errno "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_clock_gettime clock_gettime "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_close close "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_exit _exit "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_madvise madvise "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_mlock mlock "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_error __error "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_usleep usleep "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_proc_regionfilename proc_regionfilename "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top