summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/kern_clock.c6
-rw-r--r--sys/sys/systm.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index 5f703f0cbda..7a7911fbe40 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_clock.c,v 1.70 2010/01/14 23:12:11 schwarze Exp $ */
+/* $OpenBSD: kern_clock.c,v 1.71 2010/08/20 22:03:22 matthew Exp $ */
/* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */
/*-
@@ -317,7 +317,7 @@ hardclock(struct clockframe *frame)
* compute the second argument to timeout_add() from an absolute time.
*/
int
-hzto(struct timeval *tv)
+hzto(const struct timeval *tv)
{
struct timeval now;
unsigned long ticks;
@@ -369,7 +369,7 @@ hzto(struct timeval *tv)
* Compute number of hz in the specified amount of time.
*/
int
-tvtohz(struct timeval *tv)
+tvtohz(const struct timeval *tv)
{
unsigned long ticks;
long sec, usec;
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index 6a13ae2c8da..057668b9fa8 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: systm.h,v 1.81 2010/07/08 20:15:01 deraadt Exp $ */
+/* $OpenBSD: systm.h,v 1.82 2010/08/20 22:03:22 matthew Exp $ */
/* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */
/*-
@@ -213,8 +213,8 @@ int copyin(const void *, void *, size_t)
int copyout(const void *, void *, size_t);
struct timeval;
-int hzto(struct timeval *);
-int tvtohz(struct timeval *);
+int hzto(const struct timeval *);
+int tvtohz(const struct timeval *);
void realitexpire(void *);
struct clockframe;