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
35a2206d
Commit
35a2206d
authored
Jul 15, 2022
by
Torge Matthies
Committed by
Alexandre Julliard
Jul 18, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr100: Make all exception ctors with a string parameter trace the string.
Signed-off-by:
Torge Matthies
<
tmatthies@codeweavers.com
>
parent
da1b7cf4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
concurrency.c
dlls/msvcrt/concurrency.c
+6
-6
No files found.
dlls/msvcrt/concurrency.c
View file @
35a2206d
...
...
@@ -378,7 +378,7 @@ static void create_default_scheduler(void);
DEFINE_THISCALL_WRAPPER
(
improper_lock_ctor_str
,
8
)
improper_lock
*
__thiscall
improper_lock_ctor_str
(
improper_lock
*
this
,
const
char
*
str
)
{
TRACE
(
"(%p %
p
)
\n
"
,
this
,
str
);
TRACE
(
"(%p %
s
)
\n
"
,
this
,
str
);
return
__exception_ctor
(
this
,
str
,
&
improper_lock_vtable
);
}
...
...
@@ -403,7 +403,7 @@ DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_ctor_str, 8)
improper_scheduler_attach
*
__thiscall
improper_scheduler_attach_ctor_str
(
improper_scheduler_attach
*
this
,
const
char
*
str
)
{
TRACE
(
"(%p %
p
)
\n
"
,
this
,
str
);
TRACE
(
"(%p %
s
)
\n
"
,
this
,
str
);
return
__exception_ctor
(
this
,
str
,
&
improper_scheduler_attach_vtable
);
}
...
...
@@ -430,7 +430,7 @@ DEFINE_THISCALL_WRAPPER(improper_scheduler_detach_ctor_str, 8)
improper_scheduler_detach
*
__thiscall
improper_scheduler_detach_ctor_str
(
improper_scheduler_detach
*
this
,
const
char
*
str
)
{
TRACE
(
"(%p %
p
)
\n
"
,
this
,
str
);
TRACE
(
"(%p %
s
)
\n
"
,
this
,
str
);
return
__exception_ctor
(
this
,
str
,
&
improper_scheduler_detach_vtable
);
}
...
...
@@ -457,7 +457,7 @@ DEFINE_THISCALL_WRAPPER(invalid_scheduler_policy_key_ctor_str, 8)
invalid_scheduler_policy_key
*
__thiscall
invalid_scheduler_policy_key_ctor_str
(
invalid_scheduler_policy_key
*
this
,
const
char
*
str
)
{
TRACE
(
"(%p %
p
)
\n
"
,
this
,
str
);
TRACE
(
"(%p %
s
)
\n
"
,
this
,
str
);
return
__exception_ctor
(
this
,
str
,
&
invalid_scheduler_policy_key_vtable
);
}
...
...
@@ -484,7 +484,7 @@ DEFINE_THISCALL_WRAPPER(invalid_scheduler_policy_thread_specification_ctor_str,
invalid_scheduler_policy_thread_specification
*
__thiscall
invalid_scheduler_policy_thread_specification_ctor_str
(
invalid_scheduler_policy_thread_specification
*
this
,
const
char
*
str
)
{
TRACE
(
"(%p %
p
)
\n
"
,
this
,
str
);
TRACE
(
"(%p %
s
)
\n
"
,
this
,
str
);
return
__exception_ctor
(
this
,
str
,
&
invalid_scheduler_policy_thread_specification_vtable
);
}
...
...
@@ -511,7 +511,7 @@ DEFINE_THISCALL_WRAPPER(invalid_scheduler_policy_value_ctor_str, 8)
invalid_scheduler_policy_value
*
__thiscall
invalid_scheduler_policy_value_ctor_str
(
invalid_scheduler_policy_value
*
this
,
const
char
*
str
)
{
TRACE
(
"(%p %
p
)
\n
"
,
this
,
str
);
TRACE
(
"(%p %
s
)
\n
"
,
this
,
str
);
return
__exception_ctor
(
this
,
str
,
&
invalid_scheduler_policy_value_vtable
);
}
...
...
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