Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
e5cbebc1
Commit
e5cbebc1
authored
Jun 12, 2013
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: fix plan9, windows builds
TBR=dvyukov CC=golang-dev
https://golang.org/cl/10229043
parent
80efeff2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
os_plan9_386.c
src/pkg/runtime/os_plan9_386.c
+1
-1
os_plan9_amd64.c
src/pkg/runtime/os_plan9_amd64.c
+1
-1
os_windows_386.c
src/pkg/runtime/os_windows_386.c
+1
-1
os_windows_amd64.c
src/pkg/runtime/os_windows_amd64.c
+1
-1
No files found.
src/pkg/runtime/os_plan9_386.c
View file @
e5cbebc1
...
...
@@ -95,7 +95,7 @@ Throw:
runtime
·
printf
(
"
\n
"
);
if
(
runtime
·
gotraceback
(
&
crash
))
{
runtime
·
traceback
(
(
void
*
)
ureg
->
pc
,
(
void
*
)
ureg
->
sp
,
0
,
gp
);
runtime
·
traceback
(
ureg
->
pc
,
ureg
->
sp
,
0
,
gp
);
runtime
·
tracebackothers
(
gp
);
runtime
·
dumpregs
(
ureg
);
}
...
...
src/pkg/runtime/os_plan9_amd64.c
View file @
e5cbebc1
...
...
@@ -103,7 +103,7 @@ Throw:
runtime
·
printf
(
"
\n
"
);
if
(
runtime
·
gotraceback
(
&
crash
))
{
runtime
·
traceback
(
(
void
*
)
ureg
->
ip
,
(
void
*
)
ureg
->
sp
,
0
,
gp
);
runtime
·
traceback
(
ureg
->
ip
,
ureg
->
sp
,
0
,
gp
);
runtime
·
tracebackothers
(
gp
);
runtime
·
dumpregs
(
ureg
);
}
...
...
src/pkg/runtime/os_windows_386.c
View file @
e5cbebc1
...
...
@@ -76,7 +76,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
runtime
·
printf
(
"
\n
"
);
if
(
runtime
·
gotraceback
(
&
crash
)){
runtime
·
traceback
(
(
void
*
)
r
->
Eip
,
(
void
*
)
r
->
Esp
,
0
,
gp
);
runtime
·
traceback
(
r
->
Eip
,
r
->
Esp
,
0
,
gp
);
runtime
·
tracebackothers
(
gp
);
runtime
·
dumpregs
(
r
);
}
...
...
src/pkg/runtime/os_windows_amd64.c
View file @
e5cbebc1
...
...
@@ -83,7 +83,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
runtime
·
printf
(
"
\n
"
);
if
(
runtime
·
gotraceback
(
&
crash
)){
runtime
·
traceback
(
(
void
*
)
r
->
Rip
,
(
void
*
)
r
->
Rsp
,
0
,
gp
);
runtime
·
traceback
(
r
->
Rip
,
r
->
Rsp
,
0
,
gp
);
runtime
·
tracebackothers
(
gp
);
runtime
·
dumpregs
(
r
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment