Unlock the pool for all threads leaving it. (#78348)

2002-04-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
	for all threads leaving it. (#78348)
This commit is contained in:
Sebastian Wilhelmi 2002-04-13 10:08:31 +00:00 committed by Sebastian Wilhelmi
parent 0dac3e9e49
commit 64855733d7
8 changed files with 40 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -1,3 +1,8 @@
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
for all threads leaving it. (#78348)
2002-04-11 Matthias Clasen <maclas@gmx.de>
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for

View File

@ -134,10 +134,9 @@ g_thread_pool_thread_proxy (gpointer data)
watcher = TRUE;
}
if (goto_global_pool)
{
pool->num_threads--;
pool->num_threads--;
if (!pool->running && !pool->waiting)
{
@ -146,9 +145,11 @@ g_thread_pool_thread_proxy (gpointer data)
g_async_queue_unlock (pool->queue);
g_thread_pool_free_internal (pool);
}
else if (len == - pool->num_threads)
else
{
g_thread_pool_wakeup_and_stop_all (pool);
if (len == - pool->num_threads)
g_thread_pool_wakeup_and_stop_all (pool);
g_async_queue_unlock (pool->queue);
}
}