Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for invoke_per_goid (0.11 sec)

  1. src/runtime/runtime-gdb.py

    			for ptr in SliceValue(gdb.parse_and_eval("'runtime.allgs'")):
    				goids.append(int(ptr['goid']))
    		else:
    			goids = [int(gdb.parse_and_eval(goid_str))]
    
    		for goid in goids:
    			self.invoke_per_goid(goid, cmd)
    
    	def invoke_per_goid(self, goid, cmd):
    		pc, sp = find_goroutine(goid)
    		if not pc:
    			print("No such goroutine: ", goid)
    			return
    		pc = pc_to_int(pc)
    		save_frame = gdb.selected_frame()
    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