Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lastcontinuehandler (0.16 sec)

  1. src/runtime/testdata/testwinlib/main.go

    func CallMeBack(callback C.callmeBackFunc) {
    	C.bridgeCallback(callback)
    }
    
    // Dummy is called by the C code before registering the exception/continue handlers simulating a debugger.
    // This makes sure that the Go runtime's lastcontinuehandler is reached before the C continue handler and thus,
    // validate that it does not crash the program before another handler could take an action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  2. src/runtime/signal_windows.go

    		return _EXCEPTION_CONTINUE_SEARCH
    	}
    	return _EXCEPTION_CONTINUE_EXECUTION
    }
    
    // lastcontinuehandler is reached, because runtime cannot handle
    // current exception. lastcontinuehandler will print crash info and exit.
    //
    // It is nosplit for the same reason as exceptionhandler.
    //
    //go:nosplit
    func lastcontinuehandler(info *exceptionrecord, r *context, gp *g) int32 {
    	if islibrary || isarchive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/runtime/os_windows.go

    	// the stack (in theory VirtualQuery isn't supposed to include
    	// that, but it does). Add an additional 8K of slop for
    	// calling C functions that don't have stack checks and for
    	// lastcontinuehandler. We shouldn't be anywhere near this
    	// bound anyway.
    	base := mbi.allocationBase + 16<<10
    	// Sanity check the stack bounds.
    	g0 := getg()
    	if base > g0.stack.hi || g0.stack.hi-base > 64<<20 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top