Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Jan 2008 21:21:37 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 134414 for review
Message-ID:  <200801292121.m0TLLbjt027615@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=134414

Change 134414 by jb@jb_freebsd1 on 2008/01/29 21:20:54

	Undo an over-merge.

Affected files ...

.. //depot/projects/dtrace7/src/sys/compat/opensolaris/sys/proc.h#4 edit

Differences ...

==== //depot/projects/dtrace7/src/sys/compat/opensolaris/sys/proc.h#4 (text+ko) ====

@@ -75,12 +75,12 @@
 	ASSERT(len == 0);
 	ASSERT(state == TS_RUN);
 
-	error = kproc_create(proc, arg, &p, 0, ZFS_KSTACK_PAGES,
+	error = kthread_create(proc, arg, &p, 0, ZFS_KSTACK_PAGES,
 	    "solthread %p", proc);
 	return (error == 0 ? FIRST_THREAD_IN_PROC(p) : NULL);
 }
 
-#define	thread_exit()	kproc_exit(0)
+#define	thread_exit()	kthread_exit(0)
 
 #endif	/* _KERNEL */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801292121.m0TLLbjt027615>