wpaul 8be176b07b Correct the macro definition for KeRaiseIrql(). The official API
is KeRaiseIrql(newirql, &oldirql), not oldirql = KeRaiseIrql(newirql).
(The macro ultimately translates to KfRaiseIrql() which does use
the latter API, so this has no effect on generated code.)

Also, wait for thread termination the right way: kthread_exit()
will ultimately do a wakeup(td->td_proc). This is the event we
should wait on. Eliminate the previous synchronization machinery
for this since it was never guaranteed to work correctly.
2005-10-21 05:23:20 +00:00
..
2005-10-17 23:23:20 +00:00
2005-10-20 20:30:51 +00:00
2005-10-20 20:51:30 +00:00
2005-03-28 18:31:18 +00:00
2005-10-18 06:10:03 +00:00
2005-10-15 02:09:43 +00:00
2005-10-18 11:49:14 +00:00