Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f54b1688
Commit
f54b1688
authored
Mar 30, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: stack_get_register_current_frame() is not used anymore so remove it.
parent
f8624006
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
stack.c
programs/winedbg/stack.c
+0
-23
No files found.
programs/winedbg/stack.c
View file @
f54b1688
...
...
@@ -111,29 +111,6 @@ BOOL stack_get_current_frame(IMAGEHLP_STACK_FRAME* ihsf)
return
stack_get_frame
(
dbg_curr_thread
->
curr_frame
,
ihsf
);
}
BOOL
stack_get_register_current_frame
(
unsigned
regno
,
DWORD_PTR
**
pval
)
{
enum
be_cpu_addr
kind
;
if
(
dbg_curr_thread
->
frames
==
NULL
)
return
FALSE
;
if
(
!
be_cpu
->
get_register_info
(
regno
,
&
kind
))
return
FALSE
;
switch
(
kind
)
{
case
be_cpu_addr_pc
:
*
pval
=
&
dbg_curr_thread
->
frames
[
dbg_curr_thread
->
curr_frame
].
linear_pc
;
break
;
case
be_cpu_addr_stack
:
*
pval
=
&
dbg_curr_thread
->
frames
[
dbg_curr_thread
->
curr_frame
].
linear_stack
;
break
;
case
be_cpu_addr_frame
:
*
pval
=
&
dbg_curr_thread
->
frames
[
dbg_curr_thread
->
curr_frame
].
linear_frame
;
break
;
}
return
TRUE
;
}
BOOL
stack_get_register_frame
(
const
struct
dbg_internal_var
*
div
,
DWORD_PTR
**
pval
)
{
if
(
dbg_curr_thread
->
frames
==
NULL
)
return
FALSE
;
...
...
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