/* * * LIB - interrupt priority level definitions [not in Starlet] */ #ifndef _IPLDEF_H #define _IPLDEF_H /* temporary processor priority level definitions */ #define IPL$_HWCLK 24 /* hardware clock level */ #define IPL$_HWCLKLO 22 /* hardware clock lo level */ #define IPL$_PERFMON 15 /* performance monitoring synch level */ #define IPL$_IOPOST 4 /* i/o post processing level */ #define IPL$_MAILBOX 11 /* write mailbox interlock level */ #define IPL$_POWER 31 /* powerfail interlock level */ #define IPL$_QUEUEAST 6 /* queue ast level */ #define IPL$_RESCHED 3 /* scheduler level */ #define IPL$_SYNCH 8 /* system data base synchronization level */ #define IPL$_TIMER 8 /* time queue processing level */ #define IPL$_TIMERFORK 7 /* timer fork interrupt level */ #define IPL$_ASTDEL 2 /* ast delivery interrupt */ #define IPL$_SCS 8 /* scs synchronization ipl */ #define IPL$_IPINTR 22 /* ip interrupt synchronization ipl */ #define IPL$_SCHED 8 /* scheduling database ipl */ #define IPL$_JIB 8 /* jib reserved spinlock ipl */ #define IPL$_MMG 8 /* mmg database ipl */ #define IPL$_FILSYS 8 /* filsys database ipl */ #define IPL$_IOLOCK8 8 /* iolock8 database ipl */ #define IPL$_PR_LK8 8 /* pr_lk8 database ipl */ #define IPL$_IOLOCK9 9 /* iolock9 database ipl */ #define IPL$_PR_LK9 9 /* pr_lk9 database ipl */ #define IPL$_IOLOCK10 10 /* iolock10 database ipl */ #define IPL$_PR_LK10 10 /* pr_lk10 database ipl */ #define IPL$_IOLOCK11 11 /* iolock11 database ipl */ #define IPL$_PR_LK11 11 /* pr_lk11 database ipl */ #define IPL$_POOL 11 /* pool database ipl */ #define IPL$_INVALIDATE 19 /* invalidate database ipl */ #define IPL$_VIRTCONS 20 /* virtcons database ipl */ #define IPL$_EMB 31 /* emb database ipl */ #define IPL$_MCHECK 31 /* machine check ipl */ #define IPL$_MEGA 31 /* ipl for kitchen sink lock */ #endif /*_IPLDEF_H*/