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
7b11aacb
Commit
7b11aacb
authored
Dec 06, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Final touch on StackWalk64 so that it works.
parent
a521947e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
stack.c
dlls/dbghelp/stack.c
+3
-1
No files found.
dlls/dbghelp/stack.c
View file @
7b11aacb
...
...
@@ -492,6 +492,7 @@ BOOL WINAPI StackWalk64(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
addr_64to32
(
&
frame64
->
AddrPC
,
&
frame32
.
AddrPC
);
addr_64to32
(
&
frame64
->
AddrReturn
,
&
frame32
.
AddrReturn
);
addr_64to32
(
&
frame64
->
AddrFrame
,
&
frame32
.
AddrFrame
);
addr_64to32
(
&
frame64
->
AddrStack
,
&
frame32
.
AddrStack
);
addr_64to32
(
&
frame64
->
AddrBStore
,
&
frame32
.
AddrBStore
);
frame32
.
FuncTableEntry
=
frame64
->
FuncTableEntry
;
/* FIXME */
...
...
@@ -513,6 +514,7 @@ BOOL WINAPI StackWalk64(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
addr_32to64
(
&
frame32
.
AddrPC
,
&
frame64
->
AddrPC
);
addr_32to64
(
&
frame32
.
AddrReturn
,
&
frame64
->
AddrReturn
);
addr_32to64
(
&
frame32
.
AddrFrame
,
&
frame64
->
AddrFrame
);
addr_32to64
(
&
frame32
.
AddrStack
,
&
frame64
->
AddrStack
);
addr_32to64
(
&
frame32
.
AddrBStore
,
&
frame64
->
AddrBStore
);
frame64
->
FuncTableEntry
=
frame32
.
FuncTableEntry
;
/* FIXME */
...
...
@@ -523,7 +525,7 @@ BOOL WINAPI StackWalk64(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
frame64
->
Reserved
[
2
]
=
(
ULONG
)
frame32
.
Reserved
[
2
];
/* we don't handle KdHelp */
return
FALSE
;
return
ret
;
}
/******************************************************************
...
...
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