Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printCgoTraceback (0.15 sec)

  1. src/runtime/traceback.go

    	pc       uintptr
    	file     *byte
    	lineno   uintptr
    	funcName *byte
    	entry    uintptr
    	more     uintptr
    	data     uintptr
    }
    
    // printCgoTraceback prints a traceback of callers.
    func printCgoTraceback(callers *cgoCallers) {
    	if cgoSymbolizer == nil {
    		for _, c := range callers {
    			if c == 0 {
    				break
    			}
    			print("non-Go function at pc=", hex(c), "\n")
    		}
    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