summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_proc.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>1999-01-26 02:38:12 +0000
committerjulian <julian@FreeBSD.org>1999-01-26 02:38:12 +0000
commit05a22328877b551a6299973368b01a69c27c5567 (patch)
tree2d0955594e5dedfc3a72b9f38810bbe3daa8e68c /sys/kern/kern_proc.c
parent7332041031f8b27a81d26881a3601d76ede641f0 (diff)
downloadFreeBSD-src-05a22328877b551a6299973368b01a69c27c5567.zip
FreeBSD-src-05a22328877b551a6299973368b01a69c27c5567.tar.gz
Enable Linux threads support by default.
This takes the conditionals out of the code that has been tested by various people for a while. ps and friends (libkvm) will need a recompile as some proc structure changes are made. Submitted by: "Richard Seaman, Jr." <dick@tar.com>
Diffstat (limited to 'sys/kern/kern_proc.c')
-rw-r--r--sys/kern/kern_proc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c
index 0c6feac..f44fb1f 100644
--- a/sys/kern/kern_proc.c
+++ b/sys/kern/kern_proc.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kern_proc.c 8.7 (Berkeley) 2/14/95
- * $Id: kern_proc.c,v 1.42 1999/01/10 01:58:24 eivind Exp $
+ * $Id: kern_proc.c,v 1.43 1999/01/13 03:11:42 julian Exp $
*/
#include <sys/param.h>
@@ -415,11 +415,9 @@ fill_eproc(p, ep)
if (p->p_ucred)
ep->e_ucred = *p->p_ucred;
}
-#ifdef COMPAT_LINUX_THREADS
if (p->p_procsig){
ep->e_procsig = *p->p_procsig;
}
-#endif
if (p->p_stat != SIDL && p->p_stat != SZOMB && p->p_vmspace != NULL) {
register struct vmspace *vm = p->p_vmspace;
OpenPOWER on IntegriCloud