From ea7b011acfdc61a0cb46be944fad302c274f3664 Mon Sep 17 00:00:00 2001 From: briggs Date: Tue, 9 Jan 1996 04:06:49 +0000 Subject: [PATCH] spltty shouldn't need to block serial hard interrupts--just soft. splimp can drop, too. --- sys/arch/mac68k/include/param.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/mac68k/include/param.h b/sys/arch/mac68k/include/param.h index a1bef18a754..17db7eb4781 100644 --- a/sys/arch/mac68k/include/param.h +++ b/sys/arch/mac68k/include/param.h @@ -212,10 +212,10 @@ #define splsoftclock() spl1() /* disallow softclock */ #define splsoftnet() spl1() /* disallow network */ #define splclock() spl1() /* disallow clock interrupt */ +#define spltty() spl1() /* disallow tty (softserial&adb) interrupts */ #define splbio() spl2() /* disallow block I/O */ #define splnet() spl2() /* disallow network */ -#define spltty() spl4() /* disallow tty interrupts (serial) */ -#define splimp() spl4() /* disallow imput */ +#define splimp() spl2() /* disallow imput */ #define splhigh() spl7() /* disallow everything */ #define splsched() spl7() /* disallow scheduling */ -- 2.20.1