aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/export_test.go
AgeCommit message (Expand)Author
2022-11-17runtime: fix conflict between lfstack and checkptrKeith Randall
2022-11-01runtime: skip TestArenaCollision on failed reservationAustin Clements
2022-10-14cmd/compile,cmd/link,runtime: add start line numbers to func metadataMichael Pratt
2022-10-12arena: add experimental arena packageMichael Anthony Knyszek
2022-10-12runtime: add safe arena support to the runtimeMichael Anthony Knyszek
2022-09-16runtime/metrics: add /sync/mutex/wait/total:seconds metricMichael Anthony Knyszek
2022-09-16runtime: shrink time histogram bucketsMichael Anthony Knyszek
2022-09-05runtime: refactor finalizer goroutine statusLeonard Wang
2022-08-31runtime: convert semaRoot.nwait to atomic typecuiweixie
2022-08-19runtime: add and use runtime/internal/sys.NotInHeapCuong Manh Le
2022-08-12runtime: convert timeHistogram to atomic typesMichael Pratt
2022-08-08runtime: convert gcController.globalsScan to atomic typeMichael Pratt
2022-08-08runtime: convert gcController.maxStackScan to atomic typeMichael Pratt
2022-08-08runtime: convert gcController.heapScan to atomic typeMichael Pratt
2022-08-08runtime: convert gcController.heapLive to atomic typeMichael Pratt
2022-08-02runtime: trivial replacements of g in remaining filesMichael Pratt
2022-08-02runtime: rename _p_ to ppMichael Pratt
2022-06-29runtime: add race annotations to metricsSemaMichael Pratt
2022-06-16runtime: write much more direct test for semaphore waiter scalabilityMichael Anthony Knyszek
2022-06-03runtime: only use CPU time from the current window in the GC CPU limiterMichael Anthony Knyszek
2022-05-27runtime: cancel mark and scavenge assists if the limiter is enabledMichael Anthony Knyszek
2022-05-13runtime: make CPU limiter assist time much less error-proneMichael Anthony Knyszek
2022-05-12runtime: measure stack usage; start stacks larger if neededKeith Randall
2022-05-03runtime: use Escape instead of escape in export_test.goMichael Anthony Knyszek
2022-05-03runtime: redesign scavenging algorithmMichael Anthony Knyszek
2022-05-03runtime: set the heap goal from the memory limitMichael Anthony Knyszek
2022-05-03runtime: check the heap goal and trigger dynamicallyMichael Anthony Knyszek
2022-05-03runtime: rewrite pacer max trigger calculationMichael Anthony Knyszek
2022-05-03runtime: move inconsistent memstats into gcControllerMichael Anthony Knyszek
2022-05-03runtime: track how much memory is mapped in the Ready stateMichael Anthony Knyszek
2022-05-03runtime: add a non-functional memory limit to the pacerMichael Anthony Knyszek
2022-05-03runtime: add byte count parser for GOMEMLIMITMichael Anthony Knyszek
2022-05-03runtime: add GC CPU utilization limiterMichael Knyszek
2022-04-28runtime: clean up escaping in testsAustin Clements
2022-04-26runtime: refactor the scavenger and make it testableMichael Anthony Knyszek
2022-04-26runtime: reduce max idle mark workers during periodic GC cyclesMichael Anthony Knyszek
2022-04-25runtime: fix stack-move sensitivity in some testsAustin Clements
2022-04-20runtime: add fastrand64zhangyunhao
2022-04-05all: separate doc comment from //go: directivesRuss Cox
2022-03-31runtime: remove old pacer and the PacerRedesign goexperimentMichael Anthony Knyszek
2022-02-10runtime: make piController much more defensive about overflowMichael Anthony Knyszek
2022-02-10runtime: simplify histogram buckets considerablyMichael Anthony Knyszek
2022-01-24runtime: replace TestFutexsleep with TestTimedivMichael Pratt
2021-12-13all: gofmt -w -r 'interface{} -> any' srcRuss Cox
2021-12-06runtime: set iOS addr space to 40 bits with incremental pageallocMichael Anthony Knyszek
2021-11-29runtime: fix preemption sensitivity in TestTinyAllocIssue37262Austin Clements
2021-11-05runtime: don't hold the heap lock while scavengingMichael Anthony Knyszek
2021-11-04runtime: implement GC pacer redesignMichael Anthony Knyszek
2021-11-01runtime: disable pacer lock held assertions in testsMichael Anthony Knyszek
2021-10-29runtime: add testing framework and basic tests for GC pacerMichael Knyszek