summaryrefslogtreecommitdiff
path: root/src/runtime/panic.go
Commit message (Expand)AuthorAgeFilesLines
* all: remove some double spaces from commentsDaniel Martí2017-08-261-1/+1
* all: unindent some big chunks of codeDaniel Martí2017-08-181-28/+29
* runtime: delay exiting while panic is running deferred functionsIan Lance Taylor2017-06-051-1/+20
* runtime: remove stack barriersAustin Clements2017-02-141-1/+0
* all: make spelling consistentBrad Fitzpatrick2016-12-081-1/+1
* runtime: fix call* signatures and deferArgs with siz=0Austin Clements2016-10-211-0/+4
* sync: throw, not panic, for unlock of unlocked mutexRuss Cox2016-10-191-0/+5
* runtime: avoid endless loop if printing the panic value panicsIan Lance Taylor2016-10-051-0/+5
* runtime: optimize defer codeAustin Clements2016-09-261-54/+80
* cmd/compile, runtime: remove throwreturnMatthew Dempsky2016-09-151-4/+0
* runtime: simplify getargpJosh Bleecher Snyder2016-09-081-7/+1
* runtime: print signal name in panic, if name is knownEmmanuel Odeke2016-05-051-1/+7
* runtime: simplify mallocgc flag argumentKeith Randall2016-04-201-1/+1
* runtime: fix off-by-one error finding module for PCIan Lance Taylor2016-03-041-0/+17
* all: single space after period.Brad Fitzpatrick2016-03-021-9/+9
* runtime: when crash with panic, call user Error/String methods before freezin...Shenghou Ma2016-02-211-0/+19
* runtime: break atomics out into package runtime/internal/atomicMichael Matloob2015-11-101-3/+6
* runtime: introduce GOTRACEBACK=single, now the defaultRuss Cox2015-10-301-4/+7
* runtime: remove a redundant nil pointer check.Aaron Jacobs2015-10-191-3/+1
* runtime: add a constant for the smallest possible stack frameMichael Hudson-Doyle2015-10-181-2/+0
* runtime: merge panic1.go into panic.goNodir Turakulov2015-10-161-0/+142
* runtime: use unsafe.Pointer(x) instead of (unsafe.Pointer)(x)Matthew Dempsky2015-10-151-1/+1
* runtime: call goexit1 instead of goexitAustin Clements2015-08-061-1/+1
* all: fix misprints in commentsAinar Garipov2015-06-111-1/+1
* runtime: remove wbshadow modeRuss Cox2015-05-111-16/+0
* runtime: replace func-based write barrier skipping with type-basedRuss Cox2015-04-201-2/+2
* runtime: apply comments from CL 3742Russ Cox2015-03-051-8/+8
* runtime: bound defer pools (try 2)Dmitry Vyukov2015-03-041-7/+39
* Revert "runtime: bound defer pools"Russ Cox2015-02-041-35/+5
* runtime: bound defer poolsDmitry Vyukov2015-02-041-5/+35
* runtime: rename m.gcing to m.preemptoff and make it a stringAustin Clements2015-02-021-2/+5
* reflect: add write barriersRuss Cox2015-01-061-2/+2
* runtime: add GODEBUG wbshadow for finding missing write barriersRuss Cox2015-01-061-0/+16
* runtime: remove go prefix from a few routinesKeith Randall2014-12-291-2/+2
* runtime: rename gothrow to throwKeith Randall2014-12-281-28/+16
* runtime: make stack frames fixed size by modifying goproc/deferproc.Keith Randall2014-12-231-14/+11
* all: power64 is now ppc64Russ Cox2014-12-051-1/+1
* [dev.cc] runtime: two missed references to "M stack"Austin Clements2014-11-181-1/+1
* [dev.cc] all: merge dev.power64 (7667e41f3ced) into dev.ccRuss Cox2014-11-141-2/+2
|\
| * [dev.power64] all: merge default into dev.power64Austin Clements2014-10-221-16/+305
| |\
| * | build: merge the great pkg/ rename into dev.power64Austin Clements2014-10-221-1/+1
* | | [dev.cc] runtime: delete scalararg, ptrarg; rename onM to systemstackRuss Cox2014-11-121-10/+10
* | | [dev.cc] runtime: convert panic and stack code from C to GoRuss Cox2014-11-111-16/+20
| |/ |/|
* | runtime: clear Defer.fn before removing from the G.defer listRuss Cox2014-10-081-0/+13
* | runtime: fix windows/amd64 buildRuss Cox2014-10-071-2/+8
* | runtime: clear Defer.panic before removing from G.defer listRuss Cox2014-10-071-0/+8
* | runtime: Fix interaction between Goexit and defersKeith Randall2014-09-191-1/+17
* | runtime: delete panicstring; move its checks into gopanicRuss Cox2014-09-181-30/+29
* | runtime: make it clear that Goexit cannot be recover'd.Keith Randall2014-09-161-1/+2
* | runtime: use traceback to traverse defer structuresRuss Cox2014-09-161-43/+65