diff options
-rw-r--r-- | i386/i386/spl.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/i386/i386/spl.h b/i386/i386/spl.h index 8552e11..00c5145 100644 --- a/i386/i386/spl.h +++ b/i386/i386/spl.h @@ -37,37 +37,36 @@ extern spl_t (splhi)(void); extern spl_t (spl0)(void); extern spl_t (spl1)(void); +extern spl_t (splsoftclock)(void); extern spl_t (spl2)(void); extern spl_t (spl3)(void); extern spl_t (spl4)(void); +extern spl_t (splnet)(void); extern spl_t (splhdw)(void); extern spl_t (spl5)(void); +extern spl_t (splbio)(void); extern spl_t (spldcm)(void); extern spl_t (spl6)(void); +extern spl_t (spltty)(void); +extern spl_t (splimp)(void); +extern spl_t (spl7)(void); +extern spl_t (splclock)(void); extern spl_t (splsched)(void); +extern spl_t (splhigh)(void); extern spl_t (splx)(spl_t n); - -extern spl_t (splsoftclock)(void); +extern spl_t (splx_cli)(spl_t n); extern void splon (unsigned long n); extern unsigned long sploff (void); -extern spl_t splhigh (void); - -extern spl_t splimp (void); - -extern spl_t spltty (void); - -extern spl_t splclock (void); - extern void setsoftclock (void); /* XXX Include each other... */ |