mirror of
https://github.com/golang/go.git
synced 2026-02-07 02:09:55 +00:00
runtime: fix comments in tracetype.go
They seem to have been copy and pasted from tracestack.go without being updated. Change-Id: I6a6a69645a778fe8e6e8a2f4a80429f20e90162e Reviewed-on: https://go-review.googlesource.com/c/go/+/674215 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
77f911e31c
commit
c3927a47f0
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// Trace stack table and acquisition.
|
||||
// Trace type table.
|
||||
|
||||
package runtime
|
||||
|
||||
|
|
@ -13,7 +13,7 @@ import (
|
|||
"unsafe"
|
||||
)
|
||||
|
||||
// traceTypeTable maps stack traces (arrays of PC's) to unique uint32 ids.
|
||||
// traceTypeTable maps types to unique uint32 ids.
|
||||
// It is lock-free for reading.
|
||||
type traceTypeTable struct {
|
||||
tab traceMap
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue