diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-11-22 20:04:43 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-11-22 20:04:43 +0100 |
commit | fe1cd7b8e6b5cc7f090debf7c251820fba86ccad (patch) | |
tree | ed7ba86e6082f9cfb29bfb861c88abe0f53ee6d7 | |
parent | 3f0ec95261c6723ae4ee930ce6299a7562f93906 (diff) |
Rewamp spl.h
* i386/i386/spl.h (splnet, splbio, spl7, splx_cli): Add
prototypes.
-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... */ |