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
95e12689
Commit
95e12689
authored
Feb 15, 2024
by
Paul Gofman
Committed by
Alexandre Julliard
Feb 16, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Force debug info in critical sections.
parent
c65d0a07
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
10 deletions
+10
-10
channel.c
dlls/webservices/channel.c
+3
-3
error.c
dlls/webservices/error.c
+1
-1
heap.c
dlls/webservices/heap.c
+1
-1
listener.c
dlls/webservices/listener.c
+1
-1
msg.c
dlls/webservices/msg.c
+1
-1
proxy.c
dlls/webservices/proxy.c
+1
-1
reader.c
dlls/webservices/reader.c
+1
-1
writer.c
dlls/webservices/writer.c
+1
-1
No files found.
dlls/webservices/channel.c
View file @
95e12689
...
...
@@ -252,9 +252,9 @@ static struct channel *alloc_channel(void)
if
(
!
(
ret
=
calloc
(
1
,
size
)))
return
NULL
;
ret
->
magic
=
CHANNEL_MAGIC
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
(
&
ret
->
send_q
.
cs
);
InitializeCriticalSection
(
&
ret
->
recv_q
.
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
InitializeCriticalSection
Ex
(
&
ret
->
send_q
.
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
InitializeCriticalSection
Ex
(
&
ret
->
recv_q
.
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": channel.cs"
);
ret
->
send_q
.
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": channel.send_q.cs"
);
ret
->
recv_q
.
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": channel.recv_q.cs"
);
...
...
dlls/webservices/error.c
View file @
95e12689
...
...
@@ -67,7 +67,7 @@ static struct error *alloc_error(void)
}
ret
->
magic
=
ERROR_MAGIC
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": error.cs"
);
prop_init
(
error_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
dlls/webservices/heap.c
View file @
95e12689
...
...
@@ -184,7 +184,7 @@ static struct heap *alloc_heap(void)
if
(
!
(
ret
=
calloc
(
1
,
size
)))
return
NULL
;
ret
->
magic
=
HEAP_MAGIC
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": heap.cs"
);
prop_init
(
heap_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
dlls/webservices/listener.c
View file @
95e12689
...
...
@@ -141,7 +141,7 @@ static struct listener *alloc_listener(void)
free
(
ret
);
return
NULL
;
}
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": listener.cs"
);
prop_init
(
listener_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
dlls/webservices/msg.c
View file @
95e12689
...
...
@@ -108,7 +108,7 @@ static struct msg *alloc_msg(void)
ret
->
state
=
WS_MESSAGE_STATE_EMPTY
;
ret
->
header_size
=
HEADER_ARRAY_SIZE
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": msg.cs"
);
prop_init
(
msg_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
dlls/webservices/proxy.c
View file @
95e12689
...
...
@@ -62,7 +62,7 @@ static struct proxy *alloc_proxy(void)
if
(
!
(
ret
=
calloc
(
1
,
size
)))
return
NULL
;
ret
->
magic
=
PROXY_MAGIC
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": proxy.cs"
);
prop_init
(
proxy_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
dlls/webservices/reader.c
View file @
95e12689
...
...
@@ -422,7 +422,7 @@ static struct reader *alloc_reader(void)
ret
->
nb_prefixes
=
ret
->
nb_prefixes_allocated
=
1
;
ret
->
magic
=
READER_MAGIC
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": reader.cs"
);
prop_init
(
reader_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
dlls/webservices/writer.c
View file @
95e12689
...
...
@@ -109,7 +109,7 @@ static struct writer *alloc_writer(void)
if
(
!
(
ret
=
calloc
(
1
,
size
)))
return
NULL
;
ret
->
magic
=
WRITER_MAGIC
;
InitializeCriticalSection
(
&
ret
->
cs
);
InitializeCriticalSection
Ex
(
&
ret
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
ret
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": writer.cs"
);
prop_init
(
writer_props
,
count
,
ret
->
prop
,
&
ret
[
1
]
);
...
...
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