]> Cypherpunks.ru repositories - gostls13.git/history - src/runtime/proc.go
Revert "runtime: get a better g0 stack bound in needm"
[gostls13.git] / src / runtime / proc.go
2023-03-31 Cherry MuiRevert "runtime: get a better g0 stack bound in needm"
2023-03-30 Cherry Muiruntime: get a better g0 stack bound in needm
2023-03-30 Felix Geisendörferruntime/trace: use regular unwinding for cgo callbacks
2023-03-24 doujiang24runtime/cgo: store M for C-created thread in pthread key
2023-03-21 Austin Clementsruntime: for deep stacks, print both the top 50 and...
2023-03-10 Austin Clementsruntime: new API for filling PC traceback buffers
2023-03-09 Keith RandallRevert "cmd/link: establish dependable package initiali...
2023-03-03 Keith Randallcmd/link: establish dependable package initialization...
2023-03-02 Michael Prattall: move //go: function directives directly above...
2023-02-21 Nick Ripleyruntime: record parent goroutine ID, and print it in...
2023-02-16 Keith Randallruntime: reimplement GODEBUG=cgocheck=2 as a GOEXPERIMENT
2023-02-08 Oleksandr Redkoruntime: correct typos
2022-12-05 Cherry Muiruntime: prioritize VDSO and libcall unwinding in profiler
2022-11-18 cui fliterall: add missing periods in comments
2022-11-18 Michael Knyszekruntime: add page tracer
2022-11-10 Ian Lance Taylorruntime: consolidate some low-level error reporting
2022-11-07 Michael Prattruntime: yield in goschedIfBusy if gp.preempt
2022-10-18 Michael Prattruntime: always keep global reference to mp until mexit...
2022-10-05 Wang Deyuruntime: avoid initializing MemProfileRate in init...
2022-09-27 doujiang24runtime/trace: add missing events for the locked g...
2022-09-26 Than McIntoshruntime: add an exit hook facility
2022-09-16 Michael Anthony... runtime: tweak bgsweep "low-priority" heuristic
2022-09-16 Michael Anthony... runtime/metrics: add /sync/mutex/wait/total:seconds...
2022-09-16 Michael Anthony... runtime: set G wait reason more consistently
2022-09-07 cuiweixieruntime: simplify code using unsafe.{Slice,String}
2022-09-05 Leonard Wangruntime: refactor finalizer goroutine status
2022-09-05 Andy Panruntime: convert g.atomicstatus to internal atomic...
2022-09-01 Michael PrattRevert "runtime: convert ncgocall to atomic type"
2022-09-01 cuiweixieruntime: convert ncgocall to atomic type
2022-08-31 Andy Panruntime: convert p.numTimers and p.deletedTimers to...
2022-08-31 Andy Panruntime: convert extram and extraMWaiters to internal...
2022-08-26 Andy Panruntime: convert forcegcstate.idle to internal atomic...
2022-08-25 Andy Panruntime: convert netpollWaiters to internal atomic...
2022-08-18 Cuong Manh Leruntime: convert timer0When/timerModifiedEarliest to...
2022-08-18 Cuong Manh Leruntime: convert m.cgoCallersUse to atomic type
2022-08-18 Cuong Manh Leruntime: convert p.timerModifiedEarliest to atomic...
2022-08-17 Cuong Manh Leruntime: convert p.timer0When to atomic type
2022-08-17 Cuong Manh Leruntime: convert freezing to atomic type
2022-08-17 Cuong Manh Leruntime: convert m.signalPending to atomic type
2022-08-15 Cuong Manh LeRevert "runtime/trace: add missing events for the locke...
2022-08-12 Andy Panruntime: fix a comment typo in runqget()
2022-08-12 doujiang24runtime/trace: add missing events for the locked g...
2022-08-12 Michael Prattruntime: synchronize P wakeup and dropping Ps
2022-08-12 Michael Prattruntime: convert prof.hz to atomic type
2022-08-12 Michael Prattruntime: convert prof.signalLock to atomic type
2022-08-12 Michael Prattruntime: convert timeHistogram to atomic types
2022-08-12 Michael Prattruntime: convert schedt.sysmonwait to atomic type
2022-08-12 Michael Prattruntime: convert schedt.gcwaiting to atomic type
2022-08-12 Michael Prattruntime: convert schedt.nmspinning to atomic type
2022-08-12 Michael Prattruntime: convert schedt.npidle to atomic type
2022-08-12 Michael Prattruntime: convert schedt.ngsys to atomic type
2022-08-12 Michael Prattruntime: convert schedt.pollUntil to atomic type
2022-08-12 Michael Prattruntime: convert schedt.lastpoll to atomic type
2022-08-12 Michael Prattruntime: print irrelevant IDs as nil in schedtrace
2022-08-12 Michael Prattruntime: convert g.goid to uint64
2022-08-12 Michael Prattruntime: convert schedt.goidgen to atomic type
2022-08-12 Michael Prattruntime: convert panicking to atomic type
2022-08-12 Michael Prattruntime: convert runningPanicDefers to atomic type
2022-08-12 Michael Prattruntime: convert pendingPreemptSignals to atomic type
2022-08-11 Austin Clementsruntime: don't use trace.lock for trace reader parking
2022-08-11 Andy Panruntime: eliminate a few usages of named return values...
2022-08-08 Michael Prattruntime: remove useless empty string literal
2022-08-08 Michael Prattruntime: convert gcController.bgScanCredit to atomic...
2022-08-04 Matthew Dempsky[dev.unified] all: merge master (85d87b9) into dev...
2022-08-02 Michael Prattruntime: tricky replacements of g in proc.go
2022-08-02 Michael Prattruntime: trivial replacements of _g_ in proc.go
2022-08-02 Michael Prattruntime: tricky replacements of _g_ in proc.go
2022-08-02 Michael Prattruntime: rename _p_ to pp
2022-06-16 Matthew Dempsky[dev.unified] all: merge master (635b124) into dev...
2022-06-08 Michael Prattruntime: use pidleget for faketime jump
2022-06-03 Michael Anthony... runtime: track total idle time for GC CPU limiter
2022-05-19 Michael Anthony... runtime: use osyield in runqgrab on netbsd
2022-05-12 Keith Randallruntime: measure stack usage; start stacks larger if...
2022-05-05 Rhys Hiltnerruntime: prefer curg for execution trace profile
2022-05-03 Rhys Hiltnerruntime: add CPU samples to execution trace
2022-05-03 Rhys Hiltnerruntime: decrease STW pause for goroutine profile
2022-05-03 Rhys Hiltnerruntime/pprof: stress test goroutine profiler
2022-05-03 Rhys Hiltnerruntime/pprof: add race annotations for goroutine profiles
2022-05-03 Michael Knyszekruntime: add GC CPU utilization limiter
2022-05-03 Russ Coxall: REVERSE MERGE dev.boringcrypto (cdcb4b6) into...
2022-04-28 Michael Prattruntime: simply user throws, expand runtime throws
2022-04-28 Michael Prattruntime: differentiate "user" and "system" throws
2022-04-27 Chressie Himpel[dev.boringcrypto] all: merge master into dev.boringcrypto
2022-04-26 Michael Anthony... runtime: refactor the scavenger and make it testable
2022-04-26 Michael Anthony... runtime: move scheduling decisions by schedule into...
2022-04-26 Michael Anthony... runtime: reduce max idle mark workers during periodic...
2022-04-26 Michael Anthony... runtime: yield instead of sleeping in runqgrab on OpenBSD
2022-04-21 Michael Prattsyscall: define Syscall in terms of RawSyscall on linux
2022-04-21 Michael PrattRevert "syscall: define Syscall in terms of RawSyscall...
2022-04-21 Michael Prattsyscall: define Syscall in terms of RawSyscall on linux
2022-04-20 Chressie Himpel[dev.boringcrypto] all: merge master into dev.boringcrypto
2022-04-11 Russ Coxall: gofmt main repo
2022-04-05 Russ Coxall: separate doc comment from //go: directives
2022-04-05 Lasse Folger[dev.boringcrypto] all: merge master into dev.boringcrypto
2022-04-01 Russ Coxall: fix various doc comment formatting nits
2022-03-07 David Chase[dev.boringcrypto] all: merge master into dev.boringcrypto
2022-03-01 Keith Randallruntime: improve work stealing randomness
2022-02-15 Michael Prattruntime, syscall: reimplement AllThreadsSyscall using...
2022-02-15 Michael Prattruntime: move doAllThreadsSyscall to os_linux.go
2022-02-08 Ian Lance Taylorruntime: restore old mp.fastrand initialization
next