From 8a4ef5d1eb1d7fb46042026824fe50751179dde6 Mon Sep 17 00:00:00 2001 From: Luuk van Dijk Date: Thu, 29 Sep 2011 12:07:38 -0700 Subject: [PATCH] runtime: gdb support, fix pretty printing of channels. The type to cast the elements to was stolen from a field that's no longer there. R=rsc CC=golang-dev https://golang.org/cl/5143050 --- src/pkg/runtime/runtime-gdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkg/runtime/runtime-gdb.py b/src/pkg/runtime/runtime-gdb.py index f815e102c11..ace27e66df9 100644 --- a/src/pkg/runtime/runtime-gdb.py +++ b/src/pkg/runtime/runtime-gdb.py @@ -122,8 +122,8 @@ class ChanTypePrinter: return str(self.val.type) def children(self): - # see chan.c chanbuf() - et = [x.type for x in self.val['free'].type.target().fields() if x.name == 'elem'][0] + # see chan.c chanbuf(). et is the type stolen from hchan::recvq->first->elem + et = [x.type for x in self.val['recvq']['first'].type.target().fields() if x.name == 'elem'][0] ptr = (self.val.address + 1).cast(et.pointer()) for i in range(self.val["qcount"]): j = (self.val["recvx"] + i) % self.val["dataqsiz"]