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
280259aa
Commit
280259aa
authored
Dec 30, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: In "info threads" commands, also show the name of the processes even if not debugged.
parent
d0a3ef4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
3 deletions
+27
-3
info.c
programs/winedbg/info.c
+27
-3
No files found.
programs/winedbg/info.c
View file @
280259aa
...
...
@@ -475,6 +475,22 @@ void info_win32_processes(void)
}
}
static
BOOL
get_process_name
(
DWORD
pid
,
PROCESSENTRY32
*
entry
)
{
BOOL
ret
=
FALSE
;
HANDLE
snap
=
CreateToolhelp32Snapshot
(
TH32CS_SNAPPROCESS
,
0
);
if
(
snap
!=
INVALID_HANDLE_VALUE
)
{
entry
->
dwSize
=
sizeof
(
*
entry
);
if
(
Process32First
(
snap
,
entry
))
while
(
!
(
ret
=
(
entry
->
th32ProcessID
==
pid
))
&&
Process32Next
(
snap
,
entry
));
CloseHandle
(
snap
);
}
return
ret
;
}
void
info_win32_threads
(
void
)
{
HANDLE
snap
=
CreateToolhelp32Snapshot
(
TH32CS_SNAPTHREAD
,
0
);
...
...
@@ -500,11 +516,19 @@ void info_win32_threads(void)
if
(
entry
.
th32OwnerProcessID
!=
lastProcessId
)
{
struct
dbg_process
*
p
=
dbg_get_process
(
entry
.
th32OwnerProcessID
);
PROCESSENTRY32
pcs_entry
;
const
char
*
exename
;
if
(
p
)
exename
=
dbg_W2A
(
p
->
imageName
,
-
1
);
else
if
(
get_process_name
(
entry
.
th32OwnerProcessID
,
&
pcs_entry
))
exename
=
pcs_entry
.
szExeFile
;
else
exename
=
""
;
dbg_printf
(
"%08x%s %s
\n
"
,
entry
.
th32OwnerProcessID
,
p
?
" (D)"
:
""
,
p
?
dbg_W2A
(
p
->
imageName
,
-
1
)
:
""
);
lastProcessId
=
entry
.
th32OwnerProcessID
;
entry
.
th32OwnerProcessID
,
p
?
" (D)"
:
""
,
exename
);
lastProcessId
=
entry
.
th32OwnerProcessID
;
}
dbg_printf
(
"
\t
%08x %4d%s
\n
"
,
entry
.
th32ThreadID
,
entry
.
tpBasePri
,
...
...
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