diff options
Diffstat (limited to 'src/pkg/exp/ogle/goroutine.go')
-rw-r--r-- | src/pkg/exp/ogle/goroutine.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/exp/ogle/goroutine.go b/src/pkg/exp/ogle/goroutine.go index ad1b89334..683b70d19 100644 --- a/src/pkg/exp/ogle/goroutine.go +++ b/src/pkg/exp/ogle/goroutine.go @@ -28,9 +28,7 @@ func (t *Goroutine) String() string { } // isG0 returns true if this thread if the internal idle thread -func (t *Goroutine) isG0() bool { - return t.g.addr().base == t.g.r.p.sys.g0.addr().base; -} +func (t *Goroutine) isG0() bool { return t.g.addr().base == t.g.r.p.sys.g0.addr().base } func (t *Goroutine) resetFrame() (err os.Error) { // TODO(austin) Reuse any live part of the current frame stack |