From: Austin Clements Date: Thu, 16 Jun 2016 19:41:33 +0000 (-0400) Subject: runtime: fix stale comment in lfstack X-Git-Tag: go1.7beta2 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fca9fc52c831ab6af56e30f8c48062a99ded2580;p=gostls13.git runtime: fix stale comment in lfstack Change-Id: I6ef08f6078190dc9df0b2df4f26a76456602f5e8 Reviewed-on: https://go-review.googlesource.com/24176 Reviewed-by: Rick Hudson --- diff --git a/src/runtime/lfstack.go b/src/runtime/lfstack.go index db54ecb05e..8e33ce1d09 100644 --- a/src/runtime/lfstack.go +++ b/src/runtime/lfstack.go @@ -6,7 +6,7 @@ // Initialize head to 0, compare with 0 to test for emptiness. // The stack does not keep pointers to nodes, // so they can be garbage collected if there are no other pointers to nodes. -// The following code runs only on g0 stack. +// The following code runs only in non-preemptible contexts. package runtime