Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for find_goroutine (0.1 sec)

  1. src/runtime/runtime-gdb.py

    			blk = gdb.block_for_pc(pc)
    			status = int(ptr['atomicstatus']['value'])
    			st = sts.get(status, "unknown(%d)" % status)
    			print(s, ptr['goid'], "{0:8s}".format(st), blk.function)
    
    
    def find_goroutine(goid):
    	"""
    	find_goroutine attempts to find the goroutine identified by goid.
    	It returns a tuple of gdb.Value's representing the stack pointer
    	and program counter pointer for the goroutine.
    
    	@param int goid
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top