Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 217 for NetBSD (0.13 sec)

  1. src/runtime/cgo/netbsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build netbsd
    
    package cgo
    
    import _ "unsafe" // for go:linkname
    
    // Supply environ and __progname, because we don't
    // link against the standard NetBSD crt0.o and the
    // libc dynamic library needs them.
    
    //go:linkname _environ environ
    //go:linkname _progname __progname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 546 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-amd64.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.netbsd-amd64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-amd64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 300 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-arm.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.netbsd-arm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-arm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 296 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-386.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.netbsd-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 296 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-arm64.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.netbsd-arm64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-arm64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 300 bytes
    - Viewed (0)
  6. src/internal/platform/zosarch.go

    	{"linux", "mips64le"},
    	{"linux", "mipsle"},
    	{"linux", "ppc64"},
    	{"linux", "ppc64le"},
    	{"linux", "riscv64"},
    	{"linux", "s390x"},
    	{"linux", "sparc64"},
    	{"netbsd", "386"},
    	{"netbsd", "amd64"},
    	{"netbsd", "arm"},
    	{"netbsd", "arm64"},
    	{"openbsd", "386"},
    	{"openbsd", "amd64"},
    	{"openbsd", "arm"},
    	{"openbsd", "arm64"},
    	{"openbsd", "mips64"},
    	{"openbsd", "ppc64"},
    	{"openbsd", "riscv64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/dev_netbsd.go

    package unix
    
    // Major returns the major component of a NetBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev & 0x000fff00) >> 8)
    }
    
    // Minor returns the minor component of a NetBSD device number.
    func Minor(dev uint64) uint32 {
    	minor := uint32((dev & 0x000000ff) >> 0)
    	minor |= uint32((dev & 0xfff00000) >> 12)
    	return minor
    }
    
    // Mkdev returns a NetBSD device number generated from the given major and minor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 913 bytes
    - Viewed (0)
  8. src/runtime/netpoll_kqueue_pipe.go

    // license that can be found in the LICENSE file.
    
    //go:build netbsd || openbsd
    
    package runtime
    
    import "unsafe"
    
    // TODO(panjf2000): NetBSD didn't implement EVFILT_USER for user-established events
    // until NetBSD 10.0, check out https://www.netbsd.org/releases/formal-10/NetBSD-10.0.html
    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go

    		// subsystem.
    		if SizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    		// NetBSD and OpenBSD armv7 require 64-bit alignment.
    		if runtime.GOARCH == "arm" {
    			salign = 8
    		}
    		// NetBSD aarch64 requires 128-bit alignment.
    		if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    			salign = 16
    		}
    	case "zos":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/syscall/sockcmsg_unix_other.go

    		// subsystem.
    		if sizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    		// NetBSD and OpenBSD armv7 require 64-bit alignment.
    		if runtime.GOARCH == "arm" {
    			salign = 8
    		}
    		// NetBSD aarch64 requires 128-bit alignment.
    		if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    			salign = 16
    		}
    	}
    
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top