diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index b151b8459df9..4f5a75486028 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94 - * $Id: kern_fork.c,v 1.8 1994/10/09 07:34:55 davidg Exp $ + * $Id: kern_fork.c,v 1.9 1994/10/10 01:00:43 phk Exp $ */ #include @@ -289,9 +289,8 @@ fork1(p1, isvfork, retval) /* * Child process. Set start time and get to work. */ - (void) splclock(); - p2->p_stats->p_start = time; - (void) spl0(); + microtime(&runtime); + p2->p_stats->p_start = runtime; p2->p_acflag = AFORK; return (0); }