aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/traceback.go
AgeCommit message (Expand)Author
2025-06-09runtime: clarify stack traces for bubbled goroutinesDamien Neil
2025-05-20runtime: print blocking status of bubbled goroutines in stacksDamien Neil
2025-05-08runtime: schedule cleanups across multiple goroutinesMichael Anthony Knyszek
2025-05-07runtime: use "bubble" terminology for synctestDamien Neil
2025-05-07runtime: print stack traces for bubbled goroutines on synctest deadlockDamien Neil
2025-03-24runtime: rename runfinq to runFinalizersAndCleanupsMichael Pratt
2025-03-24runtime: always show runfinq in tracebackMichael Pratt
2024-11-19internal/synctest: new package for testing concurrent codeDamien Neil
2024-10-04runtime: use stringslite.CutPrefix in isExportedRuntimeTobias Klauser
2024-09-17runtime: move getcallersp to internal/runtime/sysMichael Pratt
2024-09-17runtime: move getcallerpc to internal/runtime/sysMichael Pratt
2024-07-23runtime,internal: move runtime/internal/sys to internal/runtime/sysDavid Chase
2024-05-29all: document legacy //go:linkname for modules with ≥100 dependentsRuss Cox
2024-05-17runtime: make use of stringslite.{HasPrefix, HasSuffix}Jes Cok
2024-03-25runtime: migrate internal/atomic to internal/runtimeAndy Pan
2024-03-15runtime: allow omitting virtual PCs from runtime.CallersFrames inputRuss Cox
2024-03-14runtime: revert "traceback: include pc=0x%x for inline frames"Russ Cox
2024-02-08runtime: traceback: include pc=0x%x for inline framesAlan Donovan
2024-01-30runtime: print exported methods from the runtime in tracebacksKeith Randall
2024-01-23cmd/compile/internal/ssagen,runtime: merge trace consts into internal/abiqiulaidongfeng
2023-12-06iter, runtime: add coroutine supportRuss Cox
2023-11-16runtime: print g pointer in crash stack dumpCherry Mui
2023-10-12runtime: don't print "unexpected SPWRITE" when printing tracebackCherry Mui
2023-09-18all: clean unnecessary castsJes Cok
2023-09-06runtime: ignore SPWrite on innermost traceback frameAustin Clements
2023-08-21runtime: drop stack-allocated pcvalueCachesAustin Clements
2023-08-07Revert "runtime: drop stack-allocated pcvalueCaches"Austin Clements
2023-08-07runtime: drop stack-allocated pcvalueCachesAustin Clements
2023-07-04runtime: have ReadMemStats do a nil check before switching stacksKeith Randall
2023-05-05cmd/link, runtime: include full symbol name for generic functions in runtime ...Cherry Mui
2023-04-21internal/abi, runtime, cmd: merge PCDATA_* and FUNCDATA_* consts into interna...Austin Clements
2023-04-21internal/abi, runtime, cmd: merge funcFlag_* consts into internal/abiAustin Clements
2023-04-21internal/abi, runtime, cmd: merge funcID_* consts into internal/abiAustin Clements
2023-04-06runtime: fix typo in traceback.goKaiya
2023-03-21runtime: for deep stacks, print both the top 50 and bottom 50 framesAustin Clements
2023-03-15runtime: fix callee tracking in traceback printingAustin Clements
2023-03-10runtime: delete gentracebackAustin Clements
2023-03-10runtime: new API for filling PC traceback buffersAustin Clements
2023-03-10runtime: move cgo traceback into unwinderAustin Clements
2023-03-10runtime: simplify traceback PC back-up logicAustin Clements
2023-03-10runtime: replace all callback uses of gentraceback with unwinderAustin Clements
2023-03-10runtime: implement traceback iteratorAustin Clements
2023-03-10runtime: replace cgoCtxt slice with index in tracebackAustin Clements
2023-03-10runtime: use inlineUnwinderAustin Clements
2023-03-10runtime: use srcFunc for showframeAustin Clements
2023-03-10runtime: resolve caller funcInfo after processing current frameAustin Clements
2023-03-10runtime: eliminate waspanic from gentracebackAustin Clements
2023-03-10runtime: don't track stack separately in gentracebackAustin Clements
2023-02-21runtime: record parent goroutine ID, and print it in stack tracesNick Ripley
2022-11-07runtime: fix a few function names on commentscui fliter