1
0
mirror of https://github.com/golang/go synced 2024-10-02 08:28:36 -06:00

runtime: homogenize panic strings on Plan 9

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/61410046
This commit is contained in:
David du Colombier 2014-02-11 09:34:43 +01:00
parent 3d487e8458
commit 120218afeb

View File

@ -310,6 +310,10 @@ runtime·sigpanic(void)
{
if(g->sigpc == 0)
runtime·panicstring("call of nil func value");
if(runtime·strcmp((byte*)m->notesig, (byte*)"sys: trap: fault read addr") >= 0 || runtime·strcmp((byte*)m->notesig, (byte*)"sys: trap: fault write addr") >= 0)
runtime·panicstring("invalid memory address or nil pointer dereference");
if(runtime·strcmp((byte*)m->notesig, (byte*)"sys: trap: divide error") >= 0)
runtime·panicstring("integer divide by zero");
runtime·panicstring(m->notesig);
if(g->sig == 1 || g->sig == 2)