mirror of https://github.com/golang/go.git
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:
parent
50ca1a52ca
commit
8de04c78b7
|
|
@ -2033,7 +2033,7 @@ runtime·memorydump(void)
|
|||
void
|
||||
runtime·gchelper(void)
|
||||
{
|
||||
int32 nproc;
|
||||
uint32 nproc;
|
||||
|
||||
gchelperstart();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue