summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2003-02-17 05:14:26 +0000
committerjeff <jeff@FreeBSD.org>2003-02-17 05:14:26 +0000
commit590a39e29bf8644b413c065f10b5830304c7e17f (patch)
treecb2703bfafc305c3d31849f9db4c5de6aee18706 /sys/ddb
parent9ca123a9b5e06a7012786efe917e934c659b7ab2 (diff)
downloadFreeBSD-src-590a39e29bf8644b413c065f10b5830304c7e17f.zip
FreeBSD-src-590a39e29bf8644b413c065f10b5830304c7e17f.tar.gz
- Split the struct kse into struct upcall and struct kse. struct kse will
soon be visible only to schedulers. This greatly simplifies much the KSE code. Submitted by: davidxu
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_ps.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c
index b8975b4..a21764e 100644
--- a/sys/ddb/db_ps.c
+++ b/sys/ddb/db_ps.c
@@ -170,15 +170,6 @@ dumpthread(volatile struct proc *p, volatile struct thread *td)
if (TD_AWAITING_INTR(td)) {
db_printf("[IWAIT]");
}
- if (TD_LENDER(td)) {
- db_printf("[LOAN]");
- }
- if (TD_IS_IDLE(td)) {
- db_printf("[IDLE]");
- }
- if (TD_IS_EXITING(td)) {
- db_printf("[EXIT]");
- }
break;
case TDS_CAN_RUN:
db_printf("[Can run]");
OpenPOWER on IntegriCloud