aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/proc.go
AgeCommit message (Expand)Author
2016-01-11runtime: fix arm/arm64/ppc64/mips64 to dropm when necessaryIan Lance Taylor
2016-01-09runtime: for c-archive/c-shared, install signal handlers synchronouslyIan Lance Taylor
2016-01-08Revert "runtime: make NumGoroutine and Stack agree not to include system goro...Russ Cox
2016-01-08runtime: make NumGoroutine and Stack agree not to include system goroutinesRuss Cox
2016-01-07runtime: fix sigprof stack barrier lockingAustin Clements
2016-01-07runtime: don't ignore success of cgo profiling tracebacksAustin Clements
2016-01-06runtime: set new m signal mask to program startup maskIan Lance Taylor
2016-01-06runtime: call msanwrite on object passed to runtime/cgoIan Lance Taylor
2015-12-18runtime: require the stack barrier lock to traceback cgo and libcallsAustin Clements
2015-12-16cmd/dist, runtime: make runtime version available as runtime.buildVersionShenghou Ma
2015-12-15runtime: only trigger forced GC if GC is not runningAustin Clements
2015-12-15runtime: simplify sigprof traceback interlockingAustin Clements
2015-12-11runtime: remove unnecessary wakeups of worker threadsDmitry Vyukov
2015-12-11runtime: fix GODEBUG=schedtrace=X delay handling.Rahul Chaudhry
2015-11-19runtime: recursively disallow write barriers in sysmonAustin Clements
2015-11-19cmd/compile: special case nowritebarrierrec for allocmAustin Clements
2015-11-19runtime: prevent sigprof during all stack barrier opsAustin Clements
2015-11-18runtime: fix bad signal stack when using cgo-created threads and async signalsRuss Cox
2015-11-12cmd/compile, cmd/link, runtime: on ppc64x, maintain the TOC pointer in R2 whe...Michael Hudson-Doyle
2015-11-12runtime: make SIGPROF skip stacks that are being copiedAustin Clements
2015-11-12runtime: break out system-specific constants into package sysMichael Matloob
2015-11-12runtime: rewrite lots of foo_Bar(f, ...) into f.bar(...)Matthew Dempsky
2015-11-11runtime: never allocate new M when jumping time forwardAustin Clements
2015-11-10runtime: break atomics out into package runtime/internal/atomicMichael Matloob
2015-11-05runtime: remove background GC goroutine and mark barriersAustin Clements
2015-11-05runtime: decentralize mark done and mark terminationAustin Clements
2015-11-05runtime: don't start idle mark workers when barriers are clearedAustin Clements
2015-11-05runtime: beginning of decentralized off->mark transitionAustin Clements
2015-11-03runtime: change p.runq from []*g to []guintptrAustin Clements
2015-10-22runtime: prune some dead variablesMatthew Dempsky
2015-10-21runtime, syscall: add calls to msan functionsIan Lance Taylor
2015-10-19runtime: merge proc1.go -> proc.goNodir Turakulov
2015-08-05runtime: don't recheck heap trigger for periodic GCAustin Clements
2015-07-09runtime: make sysmon-triggered GC concurrentAustin Clements
2015-06-19runtime: rename cgocall_errno and asmcgocall_errno into cgocall and asmcgocallAlex Brainman
2015-06-18runtime: remove cgocall and asmcgocallAlex Brainman
2015-05-18runtime: factor stoptheworld/starttheworld patternAustin Clements
2015-04-20runtime: replace func-based write barrier skipping with type-basedRuss Cox
2015-04-17runtime: do not run main when buildmode=c-sharedDavid Crawshaw
2015-04-14runtime: make cgocallback wait on package initDavid Crawshaw
2015-04-09runtime: add isarchive, set by the linkerDavid Crawshaw
2015-04-03runtime: initialize shared library at library-load timeSrdjan Petrovic
2015-04-02runtime: update gctrace line for new garbage collectorAustin Clements
2015-03-28os: give race detector chance to override Exit(0)Dmitry Vyukov
2015-03-10runtime: remove runtime frames from stacks in tracesDmitry Vyukov
2015-03-05runtime: start GC background sweep eagerlyRuss Cox
2015-03-05runtime: apply comments from CL 3742Russ Cox
2015-03-04runtime: bound sudog cacheDmitry Vyukov
2015-02-20runtime: tidy GC driverRuss Cox
2015-02-13runtime: cleanup after conversion to GoDmitry Vyukov