Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testDeferLeafSigpanic1 (0.44 sec)

  1. src/runtime/stack_test.go

    	defer func() {
    		if recover() == nil {
    			c <- -1
    			return
    		}
    		c <- y
    	}()
    	defer setBig(&y, 42, bigBuf{})
    	useStackAndCall(i, func() { panic(1) })
    }
    
    //go:noinline
    func testDeferLeafSigpanic1() {
    	// Cause a sigpanic to be injected in this frame.
    	//
    	// This function has to be declared before
    	// TestDeferLeafSigpanic so the runtime will crash if we think
    	// this function's continuation PC is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top