From 4e3328b3cf777ec80b628f203a9280094875ad5a Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Mon, 9 Mar 2009 11:18:41 +0000 Subject: [PATCH] Remove two now-defunct KSE fields from struct thread: td_uuticks and td_usticks. --- sys/sys/proc.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 3c3a5789d8ed..0488dcdd473c 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -222,8 +222,6 @@ struct thread { u_int td_sticks; /* (t) Statclock hits in system mode. */ u_int td_iticks; /* (t) Statclock hits in intr mode. */ u_int td_uticks; /* (t) Statclock hits in user mode. */ - u_int td_uuticks; /* (k) Statclock hits (usr), for UTS. */ - u_int td_usticks; /* (k) Statclock hits (sys), for UTS. */ int td_intrval; /* (t) Return value for sleepq. */ sigset_t td_oldsigmask; /* (k) Saved mask from pre sigpause. */ sigset_t td_sigmask; /* (c) Current signal mask. */