--- src/sys/kern/kern_acct.c 2005/04/20 16:37:09 1.18 +++ src/sys/kern/kern_acct.c 2005/10/08 19:46:50 1.19 @@ -217,9 +217,9 @@ acct_process(struct proc *p) acct.ac_stime = encode_comp_t(st.tv_sec, st.tv_usec); /* (3) The elapsed time the commmand ran (and its starting time) */ - acct.ac_btime = p->p_thread->td_start.tv_sec; + acct.ac_btime = p->p_start.tv_sec; microtime(&tmp); - timevalsub(&tmp, &p->p_thread->td_start); + timevalsub(&tmp, &p->p_start); acct.ac_etime = encode_comp_t(tmp.tv_sec, tmp.tv_usec); /* (4) The average amount of memory used */