diff options
author | briggs <briggs@cvs.openbsd.org> | 1996-01-09 04:06:50 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1996-01-09 04:06:50 +0000 |
commit | 53355b3519be3614449bd6847a6e8aa97b4124b7 (patch) | |
tree | 1fd546ea5db0236459eaac27da20aff9513cd0e7 /sys | |
parent | 1f8c3790ec61faf56f648a79e646d22089dfb072 (diff) |
spltty shouldn't need to block serial hard interrupts--just soft.
splimp can drop, too.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/include/param.h | 4 |
1 files 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 */ |