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
3a9698f4
Commit
3a9698f4
authored
Jun 24, 2015
by
Ken Thomases
Committed by
Alexandre Julliard
Jun 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Parse the DWARF information in Mach-O modules.
At this point, this is just the .eh_frame information used for walking the stack.
parent
500df921
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
macho_module.c
dlls/dbghelp/macho_module.c
+5
-0
No files found.
dlls/dbghelp/macho_module.c
View file @
3a9698f4
...
...
@@ -1002,6 +1002,10 @@ BOOL macho_load_debug_info(struct module* module)
macho_finish_stabs
(
module
,
&
mdi
.
ht_symtab
);
if
(
dwarf2_parse
(
module
,
module
->
reloc_delta
,
NULL
/* FIXME: some thunks to deal with ? */
,
&
module
->
format_info
[
DFI_MACHO
]
->
u
.
macho_info
->
file_map
))
ret
=
TRUE
;
pool_destroy
(
&
mdi
.
pool
);
return
ret
;
}
...
...
@@ -1125,6 +1129,7 @@ static BOOL macho_load_file(struct process* pcs, const WCHAR* filename,
HeapFree
(
GetProcessHeap
(),
0
,
modfmt
);
goto
leave
;
}
macho_info
->
module
->
reloc_delta
=
macho_info
->
module
->
module
.
BaseOfImage
-
fmap
.
u
.
macho
.
segs_start
;
macho_module_info
=
(
void
*
)(
modfmt
+
1
);
macho_info
->
module
->
format_info
[
DFI_MACHO
]
=
modfmt
;
...
...
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