Module Name:    src
Committed By:   christos
Date:           Sun Jan 30 19:47:04 UTC 2022

Modified Files:
        src/external/mpl/dhcp/dist/omapip: isclib.c

Log Message:
Bump the number of "workers" to 2 which effectively bumps the number of
contexts to 8. We seem to need 5 contexts so that should stop the error
checking to hp_retire() from triggering.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/mpl/dhcp/dist/omapip/isclib.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mpl/dhcp/dist/omapip/isclib.c
diff -u src/external/mpl/dhcp/dist/omapip/isclib.c:1.6 src/external/mpl/dhcp/dist/omapip/isclib.c:1.7
--- src/external/mpl/dhcp/dist/omapip/isclib.c:1.6	Thu Aug 19 07:50:56 2021
+++ src/external/mpl/dhcp/dist/omapip/isclib.c	Sun Jan 30 14:47:04 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: isclib.c,v 1.6 2021/08/19 11:50:56 christos Exp $	*/
+/*	$NetBSD: isclib.c,v 1.7 2022/01/30 19:47:04 christos Exp $	*/
 
 /*
  * Copyright(c) 2009-2019 by Internet Systems Consortium, Inc.("ISC")
@@ -24,7 +24,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: isclib.c,v 1.6 2021/08/19 11:50:56 christos Exp $");
+__RCSID("$NetBSD: isclib.c,v 1.7 2022/01/30 19:47:04 christos Exp $");
 
 /*Trying to figure out what we need to define to get things to work.
   It looks like we want/need the library but need the fdwatchcommand
@@ -220,7 +220,7 @@ dhcp_context_create(int flags,
 		result = isc_appctx_create(dhcp_gbl_ctx.mctx,
 					   &dhcp_gbl_ctx.actx);
 
-		result = isc_managers_create(dhcp_gbl_ctx.mctx, 1, 0,
+		result = isc_managers_create(dhcp_gbl_ctx.mctx, 2, 0,
 		    &dhcp_gbl_ctx.netmgr, &dhcp_gbl_ctx.taskmgr);
 		if (result != ISC_R_SUCCESS)
 			goto cleanup;

Reply via email to