]> Cypherpunks repositories - gostls13.git/commit
runtime: remove allocfreetrace
authorMichael Anthony Knyszek <mknyszek@google.com>
Wed, 24 Apr 2024 15:50:43 +0000 (15:50 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 8 May 2024 17:44:56 +0000 (17:44 +0000)
commit11047345f53fb1484e76fd59d6e044c219d204e5
treebf2143747921d6660ce4d36a0ccc268d0c7baf10
parent93e3696b5dac778cf638a67616a4a4d521d6fce9
runtime: remove allocfreetrace

allocfreetrace prints all allocations and frees to stderr. It's not
terribly useful because it has a really huge overhead, making it not
feasible to use except for the most trivial programs. A follow-up CL
will replace it with something that is both more thorough and also lower
overhead.

Change-Id: I1d668fee8b6aaef5251a5aea3054ec2444d75eb6
Reviewed-on: https://go-review.googlesource.com/c/go/+/583376
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
src/runtime/arena.go
src/runtime/extern.go
src/runtime/malloc.go
src/runtime/mgc.go
src/runtime/mgcsweep.go
src/runtime/mprof.go
src/runtime/runtime1.go