#include "DEFS.h" ENTRY(_splhigh) movb $40*7,177776 rts pc / C call "_splhigh();" will set processor priority to 7 / The entry is not implemented in 2.11BSD by an explicit routine but / translated into inline code equivalent to the routine above by a sed / script during the compilation of kernel code. ENTRY(splhigh) movb 177776,r0 movb $40*7,177776 rts pc / C call "opri = splhigh();" will set processor priority to 7 / and return the current processor priority / The entry is not implemented in 2.11BSD by an explicit routine but / translated into inline code equivalent to the routine above by a sed / script during the compilation of kernel code.