Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Beetham
wine
Commits
fd314683
Commit
fd314683
authored
26 years ago
by
Uwe Bonnes
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Don't print name for 32 bit lib multiple times.
Clean up printing in DEBUG_ProcessDeferredDebug.
parent
39413f81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debugger/hash.c
+3
-1
3 additions, 1 deletion
debugger/hash.c
debugger/msc.c
+8
-0
8 additions, 0 deletions
debugger/msc.c
with
11 additions
and
1 deletion
debugger/hash.c
+
3
−
1
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
)
{
...
...
This diff is collapsed.
Click to expand it.
debugger/msc.c
+
8
−
0
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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment