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
4be47ac4
Commit
4be47ac4
authored
Dec 06, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examine-relay: DLLs can have underscore in their names (like ws2_32).
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
03649e5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
examine-relay
tools/examine-relay
+5
-5
No files found.
tools/examine-relay
View file @
4be47ac4
...
...
@@ -44,7 +44,7 @@ LINE:
while
(
<
IN
>
)
{
if
(
/^([0-9a-f]+):Call ([A-Za-z0-9]+\.[A-Za-z0-9_.]+)\((.*\)) .*/
)
{
if
(
/^([0-9a-f]+):Call ([A-Za-z0-9
_
]+\.[A-Za-z0-9_.]+)\((.*\)) .*/
)
{
my
$tid
=
$1
;
my
$func
=
$2
;
if
(
defined
$fullformat
)
{
...
...
@@ -96,10 +96,10 @@ while (<IN>) {
push
@
{
$tid_callstack
{
$tid
}},
[
$func
,
$retaddr
,
$segreg
];
}
elsif
(
/^([0-9a-f]+):Ret ([A-Za-z0-9]+\.[A-Za-z0-9_.]+)\(.*\) .* ret=(........)$/
||
/^([0-9a-f]+):Ret ([A-Za-z0-9]+\.[A-Za-z0-9_.]+)\(.*\) .* ret=(....:....) (ds=....)$/
||
/^([0-9a-f]+):Ret ([A-Za-z0-9]+\.[A-Za-z0-9_.]+)\(.*\) .* ret=(........) fs=....$/
||
/^([0-9a-f]+):RET ([A-Za-z0-9]+\.[A-Za-z0-9_.]+: [A-Za-z0-9]+)\(.*\) .* ret=(........)$/
||
elsif
(
/^([0-9a-f]+):Ret ([A-Za-z0-9
_
]+\.[A-Za-z0-9_.]+)\(.*\) .* ret=(........)$/
||
/^([0-9a-f]+):Ret ([A-Za-z0-9
_
]+\.[A-Za-z0-9_.]+)\(.*\) .* ret=(....:....) (ds=....)$/
||
/^([0-9a-f]+):Ret ([A-Za-z0-9
_
]+\.[A-Za-z0-9_.]+)\(.*\) .* ret=(........) fs=....$/
||
/^([0-9a-f]+):RET ([A-Za-z0-9
_
]+\.[A-Za-z0-9_.]+: [A-Za-z0-9]+)\(.*\) .* ret=(........)$/
||
/^([0-9a-f]+):Ret (window proc) ([0-9a-fx]+) .*/
)
{
my
$tid
=
$1
;
my
$func
=
$2
;
...
...
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