svn commit: r202546 - user/kmacy/releng_8_rump/lib/libunet/unet_sys

Kip Macy kmacy at FreeBSD.org
Mon Jan 18 03:58:24 UTC 2010


Author: kmacy
Date: Mon Jan 18 03:58:23 2010
New Revision: 202546
URL: http://svn.freebsd.org/changeset/base/202546

Log:
  ifdef out kproc_kthread_add

Modified:
  user/kmacy/releng_8_rump/lib/libunet/unet_sys/unet_kern_intr.c

Modified: user/kmacy/releng_8_rump/lib/libunet/unet_sys/unet_kern_intr.c
==============================================================================
--- user/kmacy/releng_8_rump/lib/libunet/unet_sys/unet_kern_intr.c	Mon Jan 18 03:54:19 2010	(r202545)
+++ user/kmacy/releng_8_rump/lib/libunet/unet_sys/unet_kern_intr.c	Mon Jan 18 03:58:23 2010	(r202546)
@@ -361,6 +361,7 @@ ithread_create(const char *name)
 
 	ithd = malloc(sizeof(struct intr_thread), M_ITHREAD, M_WAITOK | M_ZERO);
 
+#ifdef notyet
 	error = kproc_kthread_add(ithread_loop, ithd, &intrproc,
 		    &td, RFSTOPPED | RFHIGHPID,
 	    	    0, "intr", "%s", name);
@@ -368,6 +369,7 @@ ithread_create(const char *name)
 		panic("kproc_create() failed with %d", error);
 	td->td_pflags |= TDP_ITHREAD;
 	ithd->it_thread = td;
+#endif	
 	CTR2(KTR_INTR, "%s: created %s", __func__, name);
 	return (ithd);
 }


More information about the svn-src-user mailing list