Commit e0dcf73d authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: fix comment

Void function can not return false.

R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/52000043
parent fa6ffc6c
...@@ -947,7 +947,7 @@ mspinning(void) ...@@ -947,7 +947,7 @@ mspinning(void)
} }
// Schedules some M to run the p (creates an M if necessary). // 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 static void
startm(P *p, bool spinning) startm(P *p, bool spinning)
{ {
......
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