The XINU clock ISR (on the PDP-11 and the current version of the code) is an assembly routine. You should take a look at it. The PDP-11 version performed the following each time it was invoked:
Test to see if this is the 6th interrupt - if not, decrement the counter
and return right away.
Test to see if we are in clock defer mode, if we are, count this clock
tick, and return right away.
Test to see if there is a sleeping process. If there is, decrement
the delta value of the first process on the delta queue. If it has reached
zero, call a routine called wakeup which readies any processes that
should be woken up.
Decrement the preemption counter for the running process. If it is
now zero, call resched().
Return from interrupt.
The PC version does not check for deferred processing and processes the sleep Q on every tick.