Initiate the deorbit burn sequence for sys/ipl.h by moving the software

interrupt priorities over to sys/interrupt.h next to the software interrupt
API.
This commit is contained in:
John Baldwin 2001-04-27 00:29:45 +00:00
parent bf4c03d0e9
commit 23936bbf45
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=76057
2 changed files with 13 additions and 13 deletions

View file

@ -82,6 +82,19 @@ struct ithd {
#define SWI_SWITCH 0x1
#define SWI_DELAY 0x2 /* implies NOSWITCH */
/*
* Software interrupt bit numbers in priority order. The priority only
* determines which swi will be dispatched next; a higher priority swi
* may be dispatched when a nested h/w interrupt handler returns.
*/
#define SWI_TTY 0
#define SWI_NET 1
#define SWI_CAMNET 2
#define SWI_CAMBIO 3
#define SWI_VM 4
#define SWI_TQ 5
#define SWI_CLOCK 6
extern struct ithd *tty_ithd;
extern struct ithd *clk_ithd;
extern void *net_ih;

View file

@ -38,17 +38,4 @@
#include <machine/ipl.h>
/*
* Software interrupt bit numbers in priority order. The priority only
* determines which swi will be dispatched next; a higher priority swi
* may be dispatched when a nested h/w interrupt handler returns.
*/
#define SWI_TTY 0
#define SWI_NET 1
#define SWI_CAMNET 2
#define SWI_CAMBIO 3
#define SWI_VM 4
#define SWI_TQ 5
#define SWI_CLOCK 6
#endif /* !_SYS_IPL_H_ */