]> Cypherpunks.ru repositories - gostls13.git/commit
runtime: rename _MSpan* constants to mSpan*
authorAustin Clements <austin@google.com>
Wed, 26 Sep 2018 20:39:02 +0000 (16:39 -0400)
committerAustin Clements <austin@google.com>
Wed, 26 Sep 2018 20:51:07 +0000 (20:51 +0000)
commit5a8c11ce3e7a87485defafb78c7bcf14f9d7b5a2
tree5960473e4a10a37ab8303d71a07a21f6432a27c5
parent9eb53ab9bc3b89d960c23ab47b3d7bc3fc201fd7
runtime: rename _MSpan* constants to mSpan*

We already aliased mSpanInUse to _MSpanInUse. The dual constants are
getting annoying, so fix all of these to use the mSpan* naming
convention.

This was done automatically with:
  sed -i -re 's/_?MSpan(Dead|InUse|Manual|Free)/mSpan\1/g' *.go
plus deleting the existing definition of mSpanInUse.

Change-Id: I09979d9d491d06c10689cea625dc57faa9cc6767
Reviewed-on: https://go-review.googlesource.com/137875
Run-TryBot: Austin Clements <austin@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/runtime/cgocheck.go
src/runtime/heapdump.go
src/runtime/malloc.go
src/runtime/mbitmap.go
src/runtime/mgcmark.go
src/runtime/mgcsweep.go
src/runtime/mheap.go
src/runtime/mstats.go
src/runtime/runtime-gdb_test.go
src/runtime/stack.go