summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/kern_clock.c4
-rw-r--r--sys/kern/kern_time.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index fbf1192b99b..c24254237db 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_clock.c,v 1.24 2000/07/05 08:10:56 pjanzen Exp $ */
+/* $OpenBSD: kern_clock.c,v 1.25 2000/07/06 15:33:31 ho Exp $ */
/* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */
/*-
@@ -682,7 +682,7 @@ hardclock(frame)
* Save the overhead of a software interrupt;
* it will happen as soon as we return, so do it now.
*/
- (void)splsoftclock();
+ (void)spllowersoftclock();
softclock();
} else
setsoftclock();
diff --git a/sys/kern/kern_time.c b/sys/kern/kern_time.c
index 3c0105840c2..c1aad111696 100644
--- a/sys/kern/kern_time.c
+++ b/sys/kern/kern_time.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_time.c,v 1.20 2000/07/05 08:10:57 pjanzen Exp $ */
+/* $OpenBSD: kern_time.c,v 1.21 2000/07/06 15:33:31 ho Exp $ */
/* $NetBSD: kern_time.c,v 1.20 1996/02/18 11:57:06 fvdl Exp $ */
/*
@@ -79,7 +79,7 @@ settime(tv)
s = splclock();
timersub(tv, &time, &delta);
time = *tv;
- (void) splsoftclock();
+ (void) spllowersoftclock();
timeradd(&boottime, &delta, &boottime);
timeradd(&runtime, &delta, &runtime);
# if defined(NFS) || defined(NFSSERVER)