Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SEH (0.45 sec)

  1. src/runtime/asm_amd64.s

    	ADJSP	$32
    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    	// thrown in the cgo call. Exceptions that reach this function will be
    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    		a := &auxs[i]
    		switch a.Type() {
    		case goobj.AuxWasmImport:
    			return l.resolve(r, a.Sym()), true
    		}
    	}
    
    	return 0, false
    }
    
    // SEHUnwindSym returns the auxiliary SEH unwind symbol associated with
    // a given function symbol.
    func (l *Loader) SEHUnwindSym(fnSymIdx Sym) Sym {
    	if l.SymType(fnSymIdx) != sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top