diff options
author | phk <phk@FreeBSD.org> | 2003-05-31 20:29:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-05-31 20:29:34 +0000 |
commit | 2048912526464c943ca01eb049aa45a6f63814b6 (patch) | |
tree | 7de2bef7c0ec5ca84ef0ae4ad8013d1bc6735757 /sys/kern/kern_thread.c | |
parent | e8c1d97f209fdc1266d67f8f5ec3d76ae575750e (diff) | |
download | FreeBSD-src-2048912526464c943ca01eb049aa45a6f63814b6.zip FreeBSD-src-2048912526464c943ca01eb049aa45a6f63814b6.tar.gz |
Remove unused variable(s).
Found by: FlexeLint
Diffstat (limited to 'sys/kern/kern_thread.c')
-rw-r--r-- | sys/kern/kern_thread.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index e02b7f2..6d61cd6 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -1907,11 +1907,9 @@ thread_suspend_check(int return_instead) { struct thread *td; struct proc *p; - struct ksegrp *kg; td = curthread; p = td->td_proc; - kg = td->td_ksegrp; PROC_LOCK_ASSERT(p, MA_OWNED); while (P_SHOULDSTOP(p)) { if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) { |