Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for NetBSD (0.07 sec)

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

    // mkerrors.sh -m64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && netbsd
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    // mkerrors.sh -m32
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build 386 && netbsd
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m32 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    func cpuProfilingBroken() bool {
    	switch runtime.GOOS {
    	case "plan9":
    		// Profiling unimplemented.
    		return true
    	case "aix":
    		// See https://golang.org/issue/45170.
    		return true
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		// See https://golang.org/issue/13841.
    		return true
    	case "openbsd":
    		if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {
    			// See https://golang.org/issue/13841.
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top