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
3d199dd9
Commit
3d199dd9
authored
Jun 06, 2022
by
Paul Gofman
Committed by
Alexandre Julliard
Jun 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Implement reference counting for tasks.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
parent
5d2f2797
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
5 deletions
+28
-5
request.c
dlls/winhttp/request.c
+27
-5
winhttp_private.h
dlls/winhttp/winhttp_private.h
+1
-0
No files found.
dlls/winhttp/request.c
View file @
3d199dd9
...
...
@@ -135,20 +135,41 @@ void stop_queue( struct queue *queue )
TRACE
(
"stopped %p
\n
"
,
queue
);
}
static
void
addref_task
(
struct
task_header
*
task
)
{
InterlockedIncrement
(
&
task
->
refs
);
}
static
void
release_task
(
struct
task_header
*
task
)
{
if
(
!
InterlockedDecrement
(
&
task
->
refs
))
free
(
task
);
}
static
struct
task_header
*
get_next_task
(
struct
queue
*
queue
,
struct
task_header
*
prev_task
)
{
struct
task_header
*
task
;
struct
list
*
entry
;
AcquireSRWLockExclusive
(
&
queue
->
lock
);
assert
(
queue
->
callback_running
);
if
(
prev_task
)
{
list_remove
(
&
prev_task
->
entry
);
if
(
!
(
entry
=
list_head
(
&
queue
->
queued_tasks
)))
release_task
(
prev_task
);
}
if
((
entry
=
list_head
(
&
queue
->
queued_tasks
)))
{
task
=
LIST_ENTRY
(
entry
,
struct
task_header
,
entry
);
addref_task
(
task
);
}
else
{
task
=
NULL
;
queue
->
callback_running
=
FALSE
;
}
ReleaseSRWLockExclusive
(
&
queue
->
lock
);
if
(
!
entry
)
return
NULL
;
return
LIST_ENTRY
(
entry
,
struct
task_header
,
entry
);
return
task
;
}
static
void
CALLBACK
task_callback
(
TP_CALLBACK_INSTANCE
*
instance
,
void
*
ctx
)
...
...
@@ -165,7 +186,7 @@ static void CALLBACK task_callback( TP_CALLBACK_INSTANCE *instance, void *ctx )
/* Queue object may be freed by release_object() unless there is another task referencing it. */
next_task
=
get_next_task
(
queue
,
task
);
release_object
(
task
->
obj
);
free
(
task
);
release_task
(
task
);
task
=
next_task
;
}
TRACE
(
"instance %p exiting.
\n
"
,
instance
);
...
...
@@ -178,6 +199,7 @@ static DWORD queue_task( struct queue *queue, TASK_CALLBACK task, struct task_he
TRACE
(
"queueing %p in %p
\n
"
,
task_hdr
,
queue
);
task_hdr
->
callback
=
task
;
task_hdr
->
refs
=
1
;
task_hdr
->
obj
=
obj
;
addref_object
(
obj
);
...
...
dlls/winhttp/winhttp_private.h
View file @
3d199dd9
...
...
@@ -281,6 +281,7 @@ struct task_header
struct
list
entry
;
TASK_CALLBACK
callback
;
struct
object_header
*
obj
;
volatile
LONG
refs
;
};
struct
send_request
...
...
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