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
9149c7e9
Commit
9149c7e9
authored
Feb 16, 2024
by
Paul Gofman
Committed by
Alexandre Julliard
Feb 20, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
combase: Force debug info in critical sections.
parent
6ba603a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
apartment.c
dlls/combase/apartment.c
+1
-1
marshal.c
dlls/combase/marshal.c
+1
-1
stubmanager.c
dlls/combase/stubmanager.c
+1
-1
No files found.
dlls/combase/apartment.c
View file @
9149c7e9
...
...
@@ -376,7 +376,7 @@ static struct apartment *apartment_construct(DWORD model)
apt
->
refs
=
1
;
apt
->
remunk_exported
=
FALSE
;
apt
->
oidc
=
1
;
InitializeCriticalSection
(
&
apt
->
cs
);
InitializeCriticalSection
Ex
(
&
apt
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
apt
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": apartment"
);
apt
->
multi_threaded
=
!
(
model
&
COINIT_APARTMENTTHREADED
);
...
...
dlls/combase/marshal.c
View file @
9149c7e9
...
...
@@ -1575,7 +1575,7 @@ static HRESULT proxy_manager_construct(
list_init
(
&
This
->
entry
);
list_init
(
&
This
->
interfaces
);
InitializeCriticalSection
(
&
This
->
cs
);
InitializeCriticalSection
Ex
(
&
This
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": proxy_manager"
);
/* the apartment the object was unmarshaled into */
...
...
dlls/combase/stubmanager.c
View file @
9149c7e9
...
...
@@ -187,7 +187,7 @@ static struct stub_manager *new_stub_manager(struct apartment *apt, IUnknown *ob
list_init
(
&
sm
->
ifstubs
);
InitializeCriticalSection
(
&
sm
->
lock
);
InitializeCriticalSection
Ex
(
&
sm
->
lock
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
sm
->
lock
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": stub_manager"
);
IUnknown_AddRef
(
object
);
...
...
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