From: briggs Date: Tue, 9 Jan 1996 04:06:49 +0000 (+0000) Subject: spltty shouldn't need to block serial hard interrupts--just soft. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ea7b011acfdc61a0cb46be944fad302c274f3664;p=openbsd spltty shouldn't need to block serial hard interrupts--just soft. splimp can drop, too. --- 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 */