diff options
| author | qiulaidongfeng <2645477756@qq.com> | 2023-12-14 13:12:45 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-12-14 18:21:15 +0000 |
| commit | 2f706871b95ceedecb0d0cf62b83e4f0f9a403b7 (patch) | |
| tree | 93a0cc5fc44ea130ce97dd3f16223a0e85f4f1fc | |
| parent | d2867b29c2812772b69d6d52b168def57064de9b (diff) | |
| download | go-2f706871b95ceedecb0d0cf62b83e4f0f9a403b7.tar.xz | |
runtime: delete todo of the list field for mspan
Change-Id: I10a3308c19da08d2ff0c8077bb74ad888ee04fea
GitHub-Last-Rev: 3e95b71384a25e0b29029731b72cf2c7f6a96055
GitHub-Pull-Request: golang/go#64077
Reviewed-on: https://go-review.googlesource.com/c/go/+/541755
Reviewed-by: Michael Pratt <mpratt@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
| -rw-r--r-- | src/runtime/mheap.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mheap.go b/src/runtime/mheap.go index 0bbda4aa3b..0069328346 100644 --- a/src/runtime/mheap.go +++ b/src/runtime/mheap.go @@ -399,7 +399,7 @@ type mspan struct { _ sys.NotInHeap next *mspan // next span in list, or nil if none prev *mspan // previous span in list, or nil if none - list *mSpanList // For debugging. TODO: Remove. + list *mSpanList // For debugging. startAddr uintptr // address of first byte of span aka s.base() npages uintptr // number of pages in span |
