Move splimp back to spl2 (from spl4).

This commit is contained in:
briggs 1996-06-21 21:51:15 +00:00
parent 51347fcaaa
commit 8d1606fcb9
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: psl.h,v 1.10 1996/06/14 04:42:50 scottr Exp $ */
/* $NetBSD: psl.h,v 1.11 1996/06/21 21:51:15 briggs Exp $ */
#ifndef PSL_C
#include <m68k/psl.h>
@ -40,10 +40,10 @@
#define spltty() spl1() /* disallow tty (softserial & ADB) */
#define splbio() spl2() /* disallow block I/O */
#define splnet() spl2() /* disallow network */
#define splimp() spl2() /* mutual exclusion for memory allocation */
#define splclock() spl2() /* disallow clock (and other) interrupts */
#define splstatclock() spl2() /* ditto */
#define splzs() spl4() /* disallow serial hw interrupts */
#define splimp() spl4() /* mutual exclusion for memory allocation */
#define splhigh() spl7() /* disallow everything */
#define splsched() spl7() /* disallow scheduling */