summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_tc.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-05-17 11:53:46 +0000
committerphk <phk@FreeBSD.org>1998-05-17 11:53:46 +0000
commit86337bf437231439248dd4b12415782692638387 (patch)
tree8e86681a81336aa062882602bbad469e1183f108 /sys/kern/kern_tc.c
parent12211e2fa72e1a384d08e7c40d9d255d0e596635 (diff)
downloadFreeBSD-src-86337bf437231439248dd4b12415782692638387.zip
FreeBSD-src-86337bf437231439248dd4b12415782692638387.tar.gz
s/nanoruntime/nanouptime/g
s/microruntime/microuptime/g Reviewed by: bde
Diffstat (limited to 'sys/kern/kern_tc.c')
-rw-r--r--sys/kern/kern_tc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c
index a70ab9d..3ff95e4 100644
--- a/sys/kern/kern_tc.c
+++ b/sys/kern/kern_tc.c
@@ -39,7 +39,7 @@ static volatile int print_tci = 1;
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.66 1998/04/06 08:26:03 phk Exp $
+ * $Id: kern_clock.c,v 1.67 1998/04/08 09:01:53 phk Exp $
*/
#include <sys/param.h>
@@ -562,7 +562,7 @@ nanotime(struct timespec *tv)
}
void
-getmicroruntime(struct timeval *tvp)
+getmicrouptime(struct timeval *tvp)
{
struct timecounter *tc;
@@ -572,7 +572,7 @@ getmicroruntime(struct timeval *tvp)
}
void
-getnanoruntime(struct timespec *tsp)
+getnanouptime(struct timespec *tsp)
{
struct timecounter *tc;
@@ -582,7 +582,7 @@ getnanoruntime(struct timespec *tsp)
}
void
-microruntime(struct timeval *tv)
+microuptime(struct timeval *tv)
{
struct timecounter *tc;
@@ -598,7 +598,7 @@ microruntime(struct timeval *tv)
}
void
-nanoruntime(struct timespec *tv)
+nanouptime(struct timespec *tv)
{
u_int count;
u_int64_t delta;
@@ -691,7 +691,7 @@ set_timecounter(struct timespec *ts)
{
struct timespec ts2;
- nanoruntime(&ts2);
+ nanouptime(&ts2);
boottime.tv_sec = ts->tv_sec - ts2.tv_sec;
boottime.tv_usec = (ts->tv_nsec - ts2.tv_nsec) / 1000;
if (boottime.tv_usec < 0) {
OpenPOWER on IntegriCloud