aboutsummaryrefslogtreecommitdiff
path: root/bin/ps
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1999-01-26 02:38:12 +0000
committerJulian Elischer <julian@FreeBSD.org>1999-01-26 02:38:12 +0000
commit88c5ea4574bb5ab03dc5b57ac5330f319a745991 (patch)
treea1b3a5abe99637399eefdab13a925f496fce8a94 /bin/ps
parentab19eb82304a9f61aca28dbbb49fac2d0a5f0a9f (diff)
downloadsrc-88c5ea4574bb5ab03dc5b57ac5330f319a745991.tar.gz
src-88c5ea4574bb5ab03dc5b57ac5330f319a745991.zip
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>
Notes
Notes: svn path=/head/; revision=43208
Diffstat (limited to 'bin/ps')
-rw-r--r--bin/ps/keyword.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/bin/ps/keyword.c b/bin/ps/keyword.c
index 6cd2c3572dc9..9ac0f22a6715 100644
--- a/bin/ps/keyword.c
+++ b/bin/ps/keyword.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)keyword.c 8.5 (Berkeley) 4/2/94";
#else
static const char rcsid[] =
- "$Id: keyword.c,v 1.21 1998/12/19 02:55:32 julian Exp $";
+ "$Id: keyword.c,v 1.22 1999/01/13 03:11:43 julian Exp $";
#endif
#endif /* not lint */
@@ -157,17 +157,10 @@ VAR var[] = {
{"ruser", "RUSER", NULL, LJUST|DSIZ, runame, s_runame, USERLEN},
{"sess", "SESS", NULL, 0, evar, NULL, 6, EOFF(e_sess), KPTR, "lx"},
{"sig", "PENDING", NULL, 0, pvar, NULL, 8, POFF(p_siglist), INT, "x"},
-#ifndef COMPAT_LINUX_THREADS
- {"sigcatch", "CAUGHT",
- NULL, 0, pvar, NULL, 8, POFF(p_sigcatch), UINT, "x"},
- {"sigignore", "IGNORED",
- NULL, 0, pvar, NULL, 8, POFF(p_sigignore), UINT, "x"},
-#else
{"sigcatch", "CAUGHT",
NULL, 0, evar, NULL, 8, EOFF(e_procsig.ps_sigcatch), UINT, "x"},
{"sigignore", "IGNORED",
NULL, 0, evar, NULL, 8, EOFF(e_procsig.ps_sigignore), UINT, "x"},
-#endif /* COMPAT_LINUX_THREADS */
{"sigmask", "BLOCKED",
NULL, 0, pvar, NULL, 8, POFF(p_sigmask), UINT, "x"},
{"sl", "SL", NULL, 0, pvar, NULL, 3, POFF(p_slptime), UINT, "d"},