aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1994-12-03 10:18:24 +0000
committerBruce Evans <bde@FreeBSD.org>1994-12-03 10:18:24 +0000
commit91290462f6a75758c60e7612ad976d5fcb5f9560 (patch)
treee6937f65200e836c6a16cec93349de1b32a06cff /sys
parent3544ae54e270c4495c08b818277839487a1dbb5a (diff)
downloadsrc-91290462f6a75758c60e7612ad976d5fcb5f9560.tar.gz
src-91290462f6a75758c60e7612ad976d5fcb5f9560.zip
Disable CLKF_BASEPRI() again. I forgot to edit an unwanted change out of
the diffs for the previous commit.
Notes
Notes: svn path=/head/; revision=4931
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/include/cpu.h4
-rw-r--r--sys/i386/include/cpu.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/include/cpu.h b/sys/amd64/include/cpu.h
index 5d4ce70bc11f..be1d11bc073d 100644
--- a/sys/amd64/include/cpu.h
+++ b/sys/amd64/include/cpu.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)cpu.h 5.4 (Berkeley) 5/9/91
- * $Id: cpu.h,v 1.17 1994/11/26 09:27:58 phk Exp $
+ * $Id: cpu.h,v 1.18 1994/12/03 10:02:53 bde Exp $
*/
#ifndef _MACHINE_CPU_H_
@@ -59,7 +59,7 @@
#define CLKF_USERMODE(framep) (ISPL((framep)->cf_cs) == SEL_UPL)
#define CLKF_INTR(framep) (intr_nesting_level >= 2)
-#if 1
+#if 0
/*
* XXX splsoftclock() is very broken and barely worth fixing. It doesn't
* turn off the clock bit in imen or in the icu. (This is not a serious
diff --git a/sys/i386/include/cpu.h b/sys/i386/include/cpu.h
index 5d4ce70bc11f..be1d11bc073d 100644
--- a/sys/i386/include/cpu.h
+++ b/sys/i386/include/cpu.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)cpu.h 5.4 (Berkeley) 5/9/91
- * $Id: cpu.h,v 1.17 1994/11/26 09:27:58 phk Exp $
+ * $Id: cpu.h,v 1.18 1994/12/03 10:02:53 bde Exp $
*/
#ifndef _MACHINE_CPU_H_
@@ -59,7 +59,7 @@
#define CLKF_USERMODE(framep) (ISPL((framep)->cf_cs) == SEL_UPL)
#define CLKF_INTR(framep) (intr_nesting_level >= 2)
-#if 1
+#if 0
/*
* XXX splsoftclock() is very broken and barely worth fixing. It doesn't
* turn off the clock bit in imen or in the icu. (This is not a serious