Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
deab8744
Commit
deab8744
authored
Jun 08, 2006
by
Pierre d'Herbemont
Committed by
Alexandre Julliard
Jun 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Implement fetch_thread_info on powerpc.
parent
6d0e51fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
minidump.c
dlls/dbghelp/minidump.c
+7
-0
No files found.
dlls/dbghelp/minidump.c
View file @
deab8744
...
...
@@ -168,6 +168,13 @@ static BOOL fetch_thread_info(struct dump_context* dc, int thd_idx,
mdThd
->
Stack
.
StartOfMemoryRange
=
(
ULONG_PTR
)
tib
.
StackLimit
;
mdThd
->
Stack
.
Memory
.
DataSize
=
(
ULONG_PTR
)
tib
.
StackBase
-
mdThd
->
Stack
.
StartOfMemoryRange
;
#elif defined(__powerpc__)
if
(
ctx
->
Iar
)
mdThd
->
Stack
.
StartOfMemoryRange
=
ctx
->
Iar
-
4
;
else
mdThd
->
Stack
.
StartOfMemoryRange
=
(
ULONG_PTR
)
tib
.
StackLimit
;
mdThd
->
Stack
.
Memory
.
DataSize
=
(
ULONG_PTR
)
tib
.
StackBase
-
mdThd
->
Stack
.
StartOfMemoryRange
;
#else
#error unsupported CPU
#endif
...
...
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