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
3cbc2716
Commit
3cbc2716
authored
Aug 01, 2013
by
Dmitriy Vyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: remove unused var
R=golang-dev, r CC=golang-dev
https://golang.org/cl/12249043
parent
d8bbbd25
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
traceback_arm.c
src/pkg/runtime/traceback_arm.c
+0
-2
traceback_x86.c
src/pkg/runtime/traceback_x86.c
+0
-2
No files found.
src/pkg/runtime/traceback_arm.c
View file @
3cbc2716
...
...
@@ -9,8 +9,6 @@
void
runtime
·
sigpanic
(
void
);
static
String
unknown
=
{
(
uint8
*
)
"?"
,
1
};
int32
runtime
·
gentraceback
(
uintptr
pc0
,
uintptr
sp0
,
uintptr
lr0
,
G
*
gp
,
int32
skip
,
uintptr
*
pcbuf
,
int32
max
,
void
(
*
callback
)(
Stkframe
*
,
void
*
),
void
*
v
,
bool
printall
)
{
...
...
src/pkg/runtime/traceback_x86.c
View file @
3cbc2716
...
...
@@ -17,8 +17,6 @@ void runtime·sigpanic(void);
// This code is also used for the 386 tracebacks.
// Use uintptr for an appropriate word-sized integer.
static
String
unknown
=
{
(
uint8
*
)
"?"
,
1
};
// Generic traceback. Handles runtime stack prints (pcbuf == nil),
// the runtime.Callers function (pcbuf != nil), as well as the garbage
// collector (callback != nil). A little clunky to merge these, but avoids
...
...
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