Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
8442a9ce
Commit
8442a9ce
authored
Aug 26, 2011
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix stuck master thread in produce_socket() by always signalling sq_empty from the worker threads
parent
5d70ffe8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
25 deletions
+25
-25
mongoose.c
mongoose.c
+25
-25
No files found.
mongoose.c
View file @
8442a9ce
...
...
@@ -3970,14 +3970,9 @@ static int consume_socket(struct mg_context *ctx, struct socket *sp) {
while
(
ctx
->
sq_head
==
ctx
->
sq_tail
&&
ctx
->
stop_flag
==
0
)
{
pthread_cond_wait
(
&
ctx
->
sq_full
,
&
ctx
->
mutex
);
}
// Master thread could wake us up without putting a socket.
// If this happens, it is time to exit.
if
(
ctx
->
stop_flag
)
{
(
void
)
pthread_mutex_unlock
(
&
ctx
->
mutex
);
return
0
;
}
assert
(
ctx
->
sq_head
>
ctx
->
sq_tail
);
// If we're stopping, sq_head may be equal to sq_tail.
if
(
ctx
->
sq_head
>
ctx
->
sq_tail
)
{
// Copy socket from the queue and increment tail
*
sp
=
ctx
->
queue
[
ctx
->
sq_tail
%
ARRAY_SIZE
(
ctx
->
queue
)];
ctx
->
sq_tail
++
;
...
...
@@ -3988,11 +3983,12 @@ static int consume_socket(struct mg_context *ctx, struct socket *sp) {
ctx
->
sq_tail
-=
ARRAY_SIZE
(
ctx
->
queue
);
ctx
->
sq_head
-=
ARRAY_SIZE
(
ctx
->
queue
);
}
}
(
void
)
pthread_cond_signal
(
&
ctx
->
sq_empty
);
(
void
)
pthread_mutex_unlock
(
&
ctx
->
mutex
);
return
1
;
return
!
ctx
->
stop_flag
;
}
static
void
worker_thread
(
struct
mg_context
*
ctx
)
{
...
...
@@ -4004,7 +4000,9 @@ static void worker_thread(struct mg_context *ctx) {
conn
->
buf
=
(
char
*
)
(
conn
+
1
);
assert
(
conn
!=
NULL
);
while
(
ctx
->
stop_flag
==
0
&&
consume_socket
(
ctx
,
&
conn
->
client
))
{
// Call consume_socket() even when ctx->stop_flag > 0, to let it signal
// sq_empty condvar to wake up the master waiting in produce_socket()
while
(
consume_socket
(
ctx
,
&
conn
->
client
))
{
conn
->
birth_time
=
time
(
NULL
);
conn
->
ctx
=
ctx
;
...
...
@@ -4041,15 +4039,17 @@ static void produce_socket(struct mg_context *ctx, const struct socket *sp) {
(
void
)
pthread_mutex_lock
(
&
ctx
->
mutex
);
// If the queue is full, wait
while
(
ctx
->
sq_head
-
ctx
->
sq_tail
>=
(
int
)
ARRAY_SIZE
(
ctx
->
queue
))
{
while
(
ctx
->
stop_flag
==
0
&&
ctx
->
sq_head
-
ctx
->
sq_tail
>=
(
int
)
ARRAY_SIZE
(
ctx
->
queue
))
{
(
void
)
pthread_cond_wait
(
&
ctx
->
sq_empty
,
&
ctx
->
mutex
);
}
assert
(
ctx
->
sq_head
-
ctx
->
sq_tail
<
(
int
)
ARRAY_SIZE
(
ctx
->
queue
));
if
(
ctx
->
sq_head
-
ctx
->
sq_tail
<
(
int
)
ARRAY_SIZE
(
ctx
->
queue
))
{
// Copy socket to the queue and increment head
ctx
->
queue
[
ctx
->
sq_head
%
ARRAY_SIZE
(
ctx
->
queue
)]
=
*
sp
;
ctx
->
sq_head
++
;
DEBUG_TRACE
((
"queued socket %d"
,
sp
->
sock
));
}
(
void
)
pthread_cond_signal
(
&
ctx
->
sq_full
);
(
void
)
pthread_mutex_unlock
(
&
ctx
->
mutex
);
...
...
@@ -4106,7 +4106,7 @@ static void master_thread(struct mg_context *ctx) {
#endif // _WIN32
}
else
{
for
(
sp
=
ctx
->
listening_sockets
;
sp
!=
NULL
;
sp
=
sp
->
next
)
{
if
(
FD_ISSET
(
sp
->
sock
,
&
read_set
))
{
if
(
ctx
->
stop_flag
==
0
&&
FD_ISSET
(
sp
->
sock
,
&
read_set
))
{
accept_new_connection
(
sp
,
ctx
);
}
}
...
...
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