Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for NetBSD (0.25 sec)

  1. src/cmd/link/internal/ld/elf.go

    	out.Write32(namesz)
    	out.Write32(descsz)
    	out.Write32(tag)
    
    	return sh
    }
    
    // NetBSD Signature (as per sys/exec_elf.h)
    const (
    	ELF_NOTE_NETBSD_NAMESZ  = 7
    	ELF_NOTE_NETBSD_DESCSZ  = 4
    	ELF_NOTE_NETBSD_TAG     = 1
    	ELF_NOTE_NETBSD_VERSION = 700000000 /* NetBSD 7.0 */
    )
    
    var ELF_NOTE_NETBSD_NAME = []byte("NetBSD\x00")
    
    func elfnetbsdsig(sh *ElfShdr, startva uint64, resoff uint64) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	"android/arm":     true,
    	"android/arm64":   true,
    	"ios/arm64":       true,
    	"ios/amd64":       true,
    	"js/wasm":         false,
    	"wasip1/wasm":     false,
    	"netbsd/386":      true,
    	"netbsd/amd64":    true,
    	"netbsd/arm":      true,
    	"netbsd/arm64":    true,
    	"openbsd/386":     true,
    	"openbsd/amd64":   true,
    	"openbsd/arm":     true,
    	"openbsd/arm64":   true,
    	"openbsd/mips64":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    				}
    			}
    
    			// Static linking tests
    			if goos != "android" && p != "netbsd/arm" {
    				// TODO(#56629): Why does this fail on netbsd-arm?
    				cgoTest("static", "testtls", "external", "static", staticCheck)
    			}
    			cgoTest("external", "testnocgo", "external", "", staticCheck)
    			if goos != "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/syscall/zerrors_netbsd_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build arm64 && netbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
  5. src/syscall/zerrors_netbsd_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && netbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
  6. src/syscall/zerrors_netbsd_arm.go

    // mkerrors.sh -marm
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -marm _const.go
    
    //go:build arm && netbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 66.5K bytes
    - Viewed (0)
  7. src/syscall/zerrors_netbsd_386.go

    // mkerrors.sh -m32
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m32 _const.go
    
    //go:build 386 && netbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  8. src/os/os_test.go

    			// whenever mtime is set.
    		case "netbsd":
    			mounts, _ := ReadFile("/proc/mounts")
    			if strings.Contains(string(mounts), "noatime") {
    				t.Logf("AccessTime didn't go backwards, but see a filesystem mounted noatime; ignoring. Issue 19293.")
    			} else {
    				t.Logf("AccessTime didn't go backwards; was=%v, after=%v (Ignoring on NetBSD, assuming noatime, Issue 19293)", at, pat)
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    // mkerrors.sh -marm
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm && netbsd
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -marm _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
    - 71.9K bytes
    - Viewed (0)
Back to top