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
fe2ae803
Commit
fe2ae803
authored
Mar 18, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Moved the ELF's module information into the new scheme.
parent
cd92e3d1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
43 deletions
+56
-43
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+2
-2
elf_module.c
dlls/dbghelp/elf_module.c
+54
-40
module.c
dlls/dbghelp/module.c
+0
-1
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
fe2ae803
...
...
@@ -320,6 +320,7 @@ struct module;
*/
enum
format_info
{
DFI_ELF
,
DFI_PE
,
DFI_DWARF
,
DFI_LAST
...
...
@@ -335,6 +336,7 @@ struct module_format
struct
location
*
loc
);
union
{
struct
elf_module_info
*
elf_info
;
struct
dwarf2_module_info_s
*
dwarf2_info
;
struct
pe_module_info
*
pe_info
;
}
u
;
...
...
@@ -350,8 +352,6 @@ struct module
unsigned
short
is_virtual
:
1
;
/* specific information for debug types */
struct
elf_module_info
*
elf_info
;
void
(
*
module_remove
)(
struct
process
*
pcs
,
struct
module
*
module
);
struct
module_format
*
format_info
[
DFI_LAST
];
struct
macho_module_info
*
macho_info
;
...
...
dlls/dbghelp/elf_module.c
View file @
fe2ae803
This diff is collapsed.
Click to expand it.
dlls/dbghelp/module.c
View file @
fe2ae803
...
...
@@ -629,7 +629,6 @@ BOOL module_remove(struct process* pcs, struct module* module)
TRACE
(
"%s (%p)
\n
"
,
debugstr_w
(
module
->
module
.
ModuleName
),
module
);
if
(
module
->
module_remove
)
module
->
module_remove
(
pcs
,
module
);
for
(
i
=
0
;
i
<
DFI_LAST
;
i
++
)
{
if
((
modfmt
=
module
->
format_info
[
i
])
&&
modfmt
->
remove
)
...
...
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