Lines Matching full:goid
401 print(s, ptr['goid'], "{0:8s}".format(sts[int(ptr['atomicstatus'])]), blk.function)
404 def find_goroutine(goid):
406 find_goroutine attempts to find the goroutine identified by goid.
410 @param int goid
418 if ptr['goid'] == goid:
424 """Execute gdb command in the context of goroutine <goid>.
429 Usage: (gdb) goroutine <goid> <gdbcmd>
439 goid, cmd = arg.split(None, 1)
440 goid = gdb.parse_and_eval(goid)
441 pc, sp = find_goroutine(int(goid))
443 print("No such goroutine: ", goid)