Commit 9e849dce authored by Ian Lance Taylor's avatar Ian Lance Taylor

runtime: improve godoc formatting of memclrNoHeapPointers comment

Fixes #28955

Change-Id: I738ad0c76f7bf8fc504a48cf55d3becd5ed7a9d6
Reviewed-on: https://go-review.googlesource.com/c/151337Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 63ac89bf
...@@ -68,12 +68,12 @@ func badsystemstack() { ...@@ -68,12 +68,12 @@ func badsystemstack() {
// used only when the caller knows that *ptr contains no heap pointers // used only when the caller knows that *ptr contains no heap pointers
// because either: // because either:
// //
// 1. *ptr is initialized memory and its type is pointer-free. // *ptr is initialized memory and its type is pointer-free, or
// //
// 2. *ptr is uninitialized memory (e.g., memory that's being reused // *ptr is uninitialized memory (e.g., memory that's being reused
// for a new allocation) and hence contains only "junk". // for a new allocation) and hence contains only "junk".
// //
// in memclr_*.s // The (CPU-specific) implementations of this function are in memclr_*.s.
//go:noescape //go:noescape
func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr) func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment