Added documentation.

2001-04-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* gthreadpool.c: Added documentation.

	* gthreadpool.c: The global thread pool now also is seperated for
	bound and unbound threads. Only threads with standard stack size
	go to the global pool. g_thread_pool_new now protects the global
	setup of inform_mutex etc. with a lock. Fixed some typos. Unlock
	the queue after g_thread_pool_wakeup_and_stop_all in the proxy.
This commit is contained in:
Sebastian Wilhelmi
2001-04-03 12:42:54 +00:00
committed by Sebastian Wilhelmi
parent c4b6fccb96
commit 1b546cf3fb
10 changed files with 514 additions and 70 deletions

View File

@@ -1,3 +1,12 @@
2001-04-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gthreadpool.c: Added documentation.
* gthreadpool.c: The global thread pool now also is seperated for
bound and unbound threads. Only threads with standard stack size
go to the global pool. g_thread_pool_new now protect the global
setup of inform_mutex etc. with a lock.
2001-04-02 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmain.c: Use the new GRealThread member "context" instead of a
@@ -8,7 +17,8 @@
* gthread.c, gthread.h: Removed the functions
g_static_private_(get|set)_for_thread and adapted
g_static_private_(get|set) and g_static_private_free accordingly.
g_static_private_(get|set) and g_static_private_free
accordingly. This fixes Bug #51435.
2001-03-30 Sven Neumann <sven@gimp.org>