artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02193f0
)
Don't be uncertain about wether clock interrupts were meant for us
author
tholo
<tholo@openbsd.org>
Mon, 9 Sep 1996 04:35:22 +0000
(
04:35
+0000)
committer
tholo
<tholo@openbsd.org>
Mon, 9 Sep 1996 04:35:22 +0000
(
04:35
+0000)
sys/arch/i386/isa/clock.c
patch
|
blob
|
history
diff --git
a/sys/arch/i386/isa/clock.c
b/sys/arch/i386/isa/clock.c
index
ed748c2
..
571033e
100644
(file)
--- a/
sys/arch/i386/isa/clock.c
+++ b/
sys/arch/i386/isa/clock.c
@@
-178,7
+178,7
@@
clockintr(arg)
struct clockframe *frame = arg; /* not strictly necessary */
hardclock(frame);
- return
-
1;
+ return 1;
}
int
@@
-191,7
+191,7
@@
rtcintr(arg)
stat = mc146818_read(NULL, MC_REGC);
if (stat & MC_REGC_PF) {
statclock(frame);
- return
-
1;
+ return 1;
}
return 0;
}