K 10 svn:author V 3 bde K 8 svn:date V 27 2000-09-12T18:41:56.000000Z K 7 svn:log V 268 Quick fix for hang on booting with -d. mtx_enter() was called before curproc was initialized. curproc == NULL was interpreted as matching the process holding Giant... Just skip mtx_enter() and mtx_exit() in trap() if (curproc == NULL && cold) (&& cold for safety). END