From: Dmitriy Vyukov Date: Tue, 14 Jan 2014 08:58:13 +0000 (+0400) Subject: runtime: fix comment X-Git-Tag: go1.3beta1~983 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e0dcf73d6163beeb4e92715d2f64fdc0ca9573be;p=gostls13.git runtime: fix comment Void function can not return false. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/52000043 --- diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c index 60cf02022b..b4bc72b5b7 100644 --- a/src/pkg/runtime/proc.c +++ b/src/pkg/runtime/proc.c @@ -947,7 +947,7 @@ mspinning(void) } // Schedules some M to run the p (creates an M if necessary). -// If p==nil, tries to get an idle P, if no idle P's returns false. +// If p==nil, tries to get an idle P, if no idle P's does nothing. static void startm(P *p, bool spinning) {