Module Name: src
Committed By: pooka
Date: Thu Apr 16 10:08:59 UTC 2015
Modified Files:
src/sys/rump/librump/rumpkern: intr.c
Log Message:
"extern int hz" was written in a very aesthetically pleasing way in this
file, but let's just be happy with the sys/kernel.h style of writing it.
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/rump/librump/rumpkern/intr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/intr.c
diff -u src/sys/rump/librump/rumpkern/intr.c:1.48 src/sys/rump/librump/rumpkern/intr.c:1.49
--- src/sys/rump/librump/rumpkern/intr.c:1.48 Wed Jan 14 18:51:56 2015
+++ src/sys/rump/librump/rumpkern/intr.c Thu Apr 16 10:08:59 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.48 2015/01/14 18:51:56 pooka Exp $ */
+/* $NetBSD: intr.c,v 1.49 2015/04/16 10:08:59 pooka Exp $ */
/*
* Copyright (c) 2008-2010, 2015 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.48 2015/01/14 18:51:56 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.49 2015/04/16 10:08:59 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -111,7 +111,6 @@ doclock(void *noarg)
long nsec;
int error;
int cpuindx = curcpu()->ci_index;
- extern int hz;
error = rumpuser_clock_gettime(RUMPUSER_CLOCK_ABSMONO, &sec, &nsec);
if (error)