Skip to content

Commit

Permalink
runtime: fix windows build
Browse files Browse the repository at this point in the history
Fixes #4743.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/7284044
  • Loading branch information
ianlancetaylor committed Feb 2, 2013
1 parent dcf16bd commit e5ea2d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pkg/runtime/signal_windows_386.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
runtime·printf("\n");

if(runtime·gotraceback()){
runtime·traceback((void*)r->Eip, (void*)r->Esp, 0, m->curg);
runtime·tracebackothers(m->curg);
runtime·traceback((void*)r->Eip, (void*)r->Esp, 0, gp);
runtime·tracebackothers(gp);
runtime·dumpregs(r);
}

Expand Down

0 comments on commit e5ea2d5

Please sign in to comment.