1
0
mirror of https://github.com/golang/go synced 2024-11-23 15:40:06 -07:00

runtime: change nproc local variable to uint32

The nproc and ndone fields are uint32.  This makes the type
consistent.

LGTM=minux.ma
R=golang-codereviews, minux.ma
CC=golang-codereviews
https://golang.org/cl/79340044
This commit is contained in:
Ian Lance Taylor 2014-03-25 05:18:08 -07:00
parent 50ca1a52ca
commit 8de04c78b7

View File

@ -2033,7 +2033,7 @@ runtime·memorydump(void)
void
runtime·gchelper(void)
{
int32 nproc;
uint32 nproc;
gchelperstart();