K 10 svn:author V 8 bmilekic K 8 svn:date V 27 2001-01-28T03:41:01.000000Z K 7 svn:log V 386 Move the setting of curproc to idleproc up earlier in ap_init(). The problem is that a mutex lock, prior to this change, is acquired before the curproc is set to idleproc, so we mess ourselves up by calling the mutex lock routine with curproc == NULL. Moving it up after the aps_ready spin-wait has us hopefully setting it after idleproc is setup. Solved by: jake (the allmighty) :-) END