t_curspl 176 kern/arch/mips/locore/trap.c if (curthread->t_curspl == 0) {
t_curspl 177 kern/arch/mips/locore/trap.c KASSERT(curthread->t_curspl == 0);
t_curspl 179 kern/arch/mips/locore/trap.c curthread->t_curspl = IPL_HIGH;
t_curspl 190 kern/arch/mips/locore/trap.c KASSERT(curthread->t_curspl == IPL_HIGH);
t_curspl 193 kern/arch/mips/locore/trap.c curthread->t_curspl = 0;
t_curspl 217 kern/arch/mips/locore/trap.c KASSERT(curthread->t_curspl == 0);
t_curspl 86 kern/arch/mips/syscall/syscall.c KASSERT(curthread->t_curspl == 0);
t_curspl 166 kern/arch/mips/syscall/syscall.c KASSERT(curthread->t_curspl == 0);
t_curspl 87 kern/arch/sys161/dev/lamebus_machdep.c KASSERT(curthread->t_curspl > 0);
t_curspl 260 kern/arch/sys161/dev/lamebus_machdep.c KASSERT(curthread->t_curspl > 0);
t_curspl 101 kern/include/thread.h int t_curspl; /* Current spl*() state */
t_curspl 117 kern/startup/main.c KASSERT(curthread->t_curspl > 0);
t_curspl 119 kern/startup/main.c KASSERT(curthread->t_curspl == 0);
t_curspl 137 kern/thread/spl.c if (cur->t_curspl < spl) {
t_curspl 139 kern/thread/spl.c splraise(cur->t_curspl, spl);
t_curspl 140 kern/thread/spl.c ret = cur->t_curspl;
t_curspl 141 kern/thread/spl.c cur->t_curspl = spl;
t_curspl 143 kern/thread/spl.c else if (cur->t_curspl > spl) {
t_curspl 145 kern/thread/spl.c ret = cur->t_curspl;
t_curspl 146 kern/thread/spl.c cur->t_curspl = spl;
t_curspl 149 kern/thread/thread.c thread->t_curspl = IPL_HIGH;