diff options
author | julian <julian@FreeBSD.org> | 2002-10-21 22:27:36 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2002-10-21 22:27:36 +0000 |
commit | 8aebe4893487ebe8f91c32a539e4dcc709207660 (patch) | |
tree | 68a0053101f2810a9bddc163f204dc5c1ccb8bc8 /sys/ddb | |
parent | 57dd722cff611c26f607121a56e226565b4287da (diff) | |
download | FreeBSD-src-8aebe4893487ebe8f91c32a539e4dcc709207660.zip FreeBSD-src-8aebe4893487ebe8f91c32a539e4dcc709207660.tar.gz |
Remove the process state PRS_WAIT.
It is never used. I left it there from pre-KSE days as I didn't know
if I'd need it or not but now I know I don't.. It's functionality
is in TDI_IWAIT in the thread.
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_ps.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c index 8ddaaaf..bffebe5 100644 --- a/sys/ddb/db_ps.c +++ b/sys/ddb/db_ps.c @@ -108,9 +108,6 @@ db_ps(dummy1, dummy2, dummy3, dummy4) case PRS_NEW: state = "new "; break; - case PRS_WAIT: - state = "wait"; - break; case PRS_ZOMBIE: state = "zomb"; break; |