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
fd314683
Commit
fd314683
authored
Oct 11, 1998
by
Uwe Bonnes
Committed by
Alexandre Julliard
Oct 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't print name for 32 bit lib multiple times.
Clean up printing in DEBUG_ProcessDeferredDebug.
parent
39413f81
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
hash.c
debugger/hash.c
+3
-1
msc.c
debugger/msc.c
+8
-0
No files found.
debugger/hash.c
View file @
fd314683
...
...
@@ -880,6 +880,8 @@ void DEBUG_LoadEntryPoints(void)
for
(
ok
=
ModuleFirst
(
&
entry
);
ok
;
ok
=
ModuleNext
(
&
entry
))
{
if
(
!
(
pModule
=
NE_GetPtr
(
entry
.
hModule
)))
continue
;
if
(
!
(
pModule
->
flags
&
NE_FFLAGS_WIN32
))
/* NE module */
{
if
((
rowcount
+
strlen
(
entry
.
szModule
))
>
76
)
{
fprintf
(
stderr
,
"
\n
"
);
...
...
@@ -888,8 +890,8 @@ void DEBUG_LoadEntryPoints(void)
fprintf
(
stderr
,
" %s"
,
entry
.
szModule
);
rowcount
+=
strlen
(
entry
.
szModule
)
+
1
;
if
(
!
(
pModule
->
flags
&
NE_FFLAGS_WIN32
))
/* NE module */
DEBUG_LoadEntryPoints16
(
entry
.
hModule
,
pModule
,
entry
.
szModule
);
}
}
for
(
wm
=
PROCESS_Current
()
->
modref_list
;
wm
;
wm
=
wm
->
next
)
{
...
...
debugger/msc.c
View file @
fd314683
...
...
@@ -2302,6 +2302,7 @@ DEBUG_ProcessDeferredDebug()
struct
MiscDebug
*
misc
;
char
*
filename
;
int
last_proc
=
-
1
;
int
need_print
=
0
;
DEBUG_InitCVDataTypes
();
...
...
@@ -2314,6 +2315,11 @@ DEBUG_ProcessDeferredDebug()
if
(
last_proc
!=
deefer
->
dbg_index
)
{
if
(
!
need_print
)
{
fprintf
(
stderr
,
"DeferredDebug for:"
);
need_print
=
1
;
}
fprintf
(
stderr
,
" %s"
,
deefer
->
module_name
);
last_proc
=
deefer
->
dbg_index
;
}
...
...
@@ -2384,6 +2390,8 @@ DEBUG_ProcessDeferredDebug()
break
;
}
}
if
(
need_print
)
fprintf
(
stderr
,
"
\n
"
);
return
TRUE
;
}
...
...
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