Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for illumos (0.48 sec)

  1. src/runtime/proc.go

    	switch GOOS {
    	case "aix", "darwin", "illumos", "ios", "solaris", "windows":
    		return true
    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    // mStackIsSystemAllocated indicates whether this runtime starts on a
    // system-allocated stack.
    func mStackIsSystemAllocated() bool {
    	switch GOOS {
    	case "aix", "darwin", "plan9", "illumos", "ios", "solaris", "windows":
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // Using GOOS=android matches build tags and files as for GOOS=linux
    // in addition to android tags and files.
    //
    // Using GOOS=illumos matches build tags and files as for GOOS=solaris
    // in addition to illumos tags and files.
    //
    // Using GOOS=ios matches build tags and files as for GOOS=darwin
    // in addition to ios tags and files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// This is read by readGccgoArchive in cmd/internal/buildid/buildid.go.
    	if a.buildID != "" && cfg.BuildToolchainName == "gccgo" {
    		switch cfg.Goos {
    		case "aix", "android", "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    			asmfile, err := b.gccgoBuildIDFile(a)
    			if err != nil {
    				return err
    			}
    			ofiles, err := BuildToolchain.asm(b, a, []string{asmfile})
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top