Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printcreatedby1 (0.32 sec)

  1. src/runtime/traceback.go

    	a, b, c := funcNamePiecesForPrint(name)
    	print(a, b, c)
    }
    
    func printcreatedby(gp *g) {
    	// Show what created goroutine, except main goroutine (goid 1).
    	pc := gp.gopc
    	f := findfunc(pc)
    	if f.valid() && showframe(f.srcFunc(), gp, false, abi.FuncIDNormal) && gp.goid != 1 {
    		printcreatedby1(f, pc, gp.parentGoid)
    	}
    }
    
    func printcreatedby1(f funcInfo, pc uintptr, goid uint64) {
    	print("created by ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top