]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Wed, 7 Feb 2001 22:36:20 +0000 (22:36 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 7 Feb 2001 22:36:20 +0000 (22:36 +0000)
 729.  [port]          pthread_setconcurrency() needs to be called on Solaris.

CHANGES
lib/isc/task.c

diff --git a/CHANGES b/CHANGES
index ff7f54443d26970fb8ffd65a0b76aee17abe262f..d1143a506ef458a863b040a577c0654ef8b2b08c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
 
        --- 9.1.1rc1 released ---
 
+ 729.  [port]          pthread_setconcurrency() needs to be called on Solaris.
+
  727.  [port]          Work around OS bug where accept() succeeds but
                        fails to fill in the peer address of the accepted
                        connection, by treating it as an error rather than
index 3b1dd0576fed5c64b8738845f07d5c142947ecd3..eb6e87bd446b940a17c668deffa71aa147479fda 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: task.c,v 1.78.2.1 2001/01/09 22:49:25 bwelling Exp $ */
+/* $Id: task.c,v 1.78.2.2 2001/02/07 22:36:20 gson Exp $ */
 
 /*
  * Principal Author: Bob Halley
@@ -1083,6 +1083,7 @@ isc_taskmgr_create(isc_mem_t *mctx, unsigned int workers,
                manager_free(manager);
                return (ISC_R_NOTHREADS);
        }
+       isc_thread_setconcurrency(workers);
 #else /* ISC_PLATFORM_USETHREADS */
        manager->refs = 0;
        taskmgr = manager;