[go-nuts] question about TestPageAllocAlloc, AllFree1

2024-05-07 Thread Leah Stapleton
I have a question about scavenging arising one of the runtime tests in runtime/mpagealloc.go. The test in question is the " AllFree1" test case in TestPageAllocAlloc. According to my understanding, in the runtime, there is a distinction between reclaiming memory and scavenging memory.

[go-nuts] Re: array index not starting at 0

2024-01-30 Thread Leah Stapleton
Is it possible that some PauseNs numbers are so small that they're rounded down to 0? On Monday, January 29, 2024 at 9:45:32 AM UTC-5 Leah Stapleton wrote: > go version go1.21.5 windows/amd64 > > There have been 9 garbage collections according to NumGC and also the > PauseEnd ar

[go-nuts] array index not starting at 0

2024-01-29 Thread Leah Stapleton
go version go1.21.5 windows/amd64 There have been 9 garbage collections according to NumGC and also the PauseEnd array; However, the PauseNs array only shows two pause times, and they are incorrectly positioned in the array (the first time is logged at PauseNs[4] rather than PauseNs[0]) Can