Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ttiSimple1 (0.08 sec)

  1. src/runtime/traceback_test.go

    //go:noinline
    func ttiLeaf() *ttiResult {
    	// Get a printed stack trace.
    	printed := string(debug.Stack())
    	return &ttiResult{printed}
    }
    
    //go:noinline
    func ttiSimple1() *ttiResult {
    	return ttiSimple2()
    }
    func ttiSimple2() *ttiResult {
    	return ttiSimple3()
    }
    func ttiSimple3() *ttiResult {
    	return ttiLeaf()
    }
    
    //go:noinline
    func ttiSigpanic1() (res *ttiResult) {
    	defer func() {
    		res = ttiLeaf()
    		recover()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
Back to top