Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CGO (0.05 sec)

  1. api/go1.3.txt

    pkg syscall (freebsd-arm-cgo), const ENOTRECOVERABLE = 95
    pkg syscall (freebsd-arm-cgo), const ENOTRECOVERABLE Errno
    pkg syscall (freebsd-arm-cgo), const EOWNERDEAD = 96
    pkg syscall (freebsd-arm-cgo), const EOWNERDEAD Errno
    pkg syscall (freebsd-arm-cgo), const EV_DROP = 4096
    pkg syscall (freebsd-arm-cgo), const EV_DROP ideal-int
    pkg syscall (freebsd-arm-cgo), const IFT_CARP = 248
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		cfiles = append(cfiles, outC...)
    		cxxfiles = append(cxxfiles, outCXX...)
    	}
    
    	// Run cgo.
    	if p.UsesCgo() || p.UsesSwig() {
    		// In a package using cgo, cgo compiles the C, C++ and assembly files with gcc.
    		// There is one exception: runtime/cgo's job is to bridge the
    		// cgo and non-cgo worlds, so it necessarily has files in both.
    		// In that case gcc only gets the gcc_* files.
    		var gccfiles []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	// Cgo directives
    	CgoCFLAGS    []string `json:",omitempty"` // cgo: flags for C compiler
    	CgoCPPFLAGS  []string `json:",omitempty"` // cgo: flags for C preprocessor
    	CgoCXXFLAGS  []string `json:",omitempty"` // cgo: flags for C++ compiler
    	CgoFFLAGS    []string `json:",omitempty"` // cgo: flags for Fortran compiler
    	CgoLDFLAGS   []string `json:",omitempty"` // cgo: flags for linker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    //	    // Cgo directives
    //	    CgoCFLAGS    []string // cgo: flags for C compiler
    //	    CgoCPPFLAGS  []string // cgo: flags for C preprocessor
    //	    CgoCXXFLAGS  []string // cgo: flags for C++ compiler
    //	    CgoFFLAGS    []string // cgo: flags for Fortran compiler
    //	    CgoLDFLAGS   []string // cgo: flags for linker
    //	    CgoPkgConfig []string // cgo: pkg-config names
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	if mp.lockedg != 0 {
    		stoplockedm()
    		execute(mp.lockedg.ptr(), false) // Never returns.
    	}
    
    	// We should not schedule away from a g that is executing a cgo call,
    	// since the cgo call is using the m's g0 stack.
    	if mp.incgo {
    		throw("schedule: in cgo")
    	}
    
    top:
    	pp := mp.p.ptr()
    	pp.preempt = false
    
    	// Safety check: if we are spinning, the run queue should be empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/callback.go

    		}
    		fname := f.Name()
    		// Remove the prepended pathname from automatically
    		// generated cgo function names.
    		if strings.HasPrefix(fname, "_") {
    			fname = path.Base(f.Name()[1:])
    		}
    		// In module mode, this package has a fully-qualified import path.
    		// Remove it if present.
    		fname = strings.TrimPrefix(fname, "cmd/cgo/internal/")
    
    		namei := ""
    		if i < len(name) {
    			namei = name[i]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  7. src/reflect/value.go

    	}
    	t := &typ.(*rtype).t
    	pt := ptrTo(t)
    	if pt.IfaceIndir() {
    		// This is a pointer to a not-in-heap type.
    		panic("reflect: New of type that may not be allocated in heap (possibly undefined cgo C type)")
    	}
    	ptr := unsafe_New(t)
    	fl := flag(Pointer)
    	return Value{pt, ptr, fl}
    }
    
    // NewAt returns a Value representing a pointer to a value of the
    // specified type, using p as that pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/encoding/json/testdata/code.json.gz

    n_t":1258135731,"max_t":1258135731,"mean_t":1258135731}],"cl_weight":0.2,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731}],"cl_weight":0.4,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731},{"name":"malloc.cgo","kids":[],"cl_weight":0.2,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731},{"name":"mem.c","kids":[],"cl_weight":0.2,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731}],"cl_weight":4.500000000000001,"touch...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top