Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
src/pkg/runtime/traceback_arm.c
src/pkg/runtime/traceback_arm.c
+0
-2
src/pkg/runtime/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