Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for NetBSD (0.12 sec)

  1. api/go1.17.txt

    pkg syscall (netbsd-arm), const WEXITED = 32
    pkg syscall (netbsd-arm), const WEXITED ideal-int
    pkg syscall (netbsd-arm-cgo), const SYS_WAIT6 = 481
    pkg syscall (netbsd-arm-cgo), const SYS_WAIT6 ideal-int
    pkg syscall (netbsd-arm-cgo), const WEXITED = 32
    pkg syscall (netbsd-arm-cgo), const WEXITED ideal-int
    pkg syscall (netbsd-arm64), const SYS_WAIT6 = 481
    pkg syscall (netbsd-arm64), const SYS_WAIT6 ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. api/go1.9.txt

    pkg math/bits (netbsd-386), const UintSize = 32
    pkg math/bits (netbsd-386-cgo), const UintSize = 32
    pkg math/bits (netbsd-amd64), const UintSize = 64
    pkg math/bits (netbsd-amd64-cgo), const UintSize = 64
    pkg math/bits (netbsd-arm), const UintSize = 32
    pkg math/bits (netbsd-arm-cgo), const UintSize = 32
    pkg math/bits (netbsd-arm64), const UintSize = 64
    pkg math/bits (netbsd-arm64-cgo), const UintSize = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  3. src/syscall/mkall.sh

    netbsd_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="./mksyscall.pl -l32 -netbsd"
    	mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    netbsd_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -netbsd"
    	mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. api/go1.11.txt

    pkg runtime/trace, type Task struct
    pkg syscall (netbsd-386), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (netbsd-386), func Pipe2([]int, int) error
    pkg syscall (netbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (netbsd-386-cgo), func Pipe2([]int, int) error
    pkg syscall (netbsd-amd64), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (netbsd-amd64), func Pipe2([]int, int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  5. api/go1.5.txt

    pkg syscall (netbsd-amd64), type SysProcAttr struct, Foreground bool
    pkg syscall (netbsd-amd64), type SysProcAttr struct, Pgid int
    pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Ctty int
    pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Foreground bool
    pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Pgid int
    pkg syscall (netbsd-arm), type SysProcAttr struct, Ctty int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  6. src/runtime/os_netbsd.go

    // netbsdMstart0 is the function call that starts executing a newly
    // created thread. On NetBSD, a new thread inherits the signal stack
    // of the creating thread. That confuses minit, so we remove that
    // signal stack here before calling the regular mstart. It's a bit
    // baroque to remove a signal stack here only to add one in minit, but
    // it's a simple change that keeps NetBSD working like other OS's.
    // At this point all signals are blocked, so there is no race.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. api/except.txt

    pkg syscall (netbsd-386), const ImplementsGetwd = false
    pkg syscall (netbsd-386-cgo), const ImplementsGetwd = false
    pkg syscall (netbsd-amd64), const ImplementsGetwd = false
    pkg syscall (netbsd-amd64-cgo), const ImplementsGetwd = false
    pkg syscall (netbsd-arm), const ImplementsGetwd = false
    pkg syscall (netbsd-arm), const SizeofIfData = 132
    pkg syscall (netbsd-arm), func Fchflags(string, int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. src/syscall/mksyscall.pl

    if($ARGV[0] eq "-plan9") {
    	$plan9 = 1;
    	shift;
    }
    if($ARGV[0] eq "-darwin") {
    	$darwin = 1;
    	$libc = 1;
    	shift;
    }
    if($ARGV[0] eq "-openbsd") {
    	$openbsd = 1;
    	shift;
    }
    if($ARGV[0] eq "-netbsd") {
    	$netbsd = 1;
    	shift;
    }
    if($ARGV[0] eq "-dragonfly") {
    	$dragonfly = 1;
    	shift;
    }
    if($ARGV[0] eq "-arm") {
    	$arm = 1;
    	shift;
    }
    if($ARGV[0] eq "-libc") {
    	$libc = 1;
    	shift;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/imports/build.go

    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    	"illumos":   true,
    	"ios":       true,
    	"js":        true,
    	"linux":     true,
    	"nacl":      true, // legacy; don't remove
    	"netbsd":    true,
    	"openbsd":   true,
    	"plan9":     true,
    	"solaris":   true,
    	"wasip1":    true,
    	"windows":   true,
    	"zos":       true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/runtime/runtime-gdb_test.go

    func checkGdbEnvironment(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	switch runtime.GOOS {
    	case "darwin":
    		t.Skip("gdb does not work on darwin")
    	case "netbsd":
    		t.Skip("gdb does not work with threads on NetBSD; see https://golang.org/issue/22893 and https://gnats.netbsd.org/52548")
    	case "linux":
    		if runtime.GOARCH == "ppc64" {
    			t.Skip("skipping gdb tests on linux/ppc64; see https://golang.org/issue/17366")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top