K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T12:43:04.000000Z K 7 svn:log V 523 In microtime(), use pushfl/popfl to preserve the interrupt enable flag instead of sti to it restore to its usual state. pushfl/popfl is actually faster in protected mode on Pentiums (4+3 cycles instead of 9), and using sti made it extremely inconvenient to call microtime() from fast interrupt handlers. pushfl/popfl is a couple of cycles slower than sti on 486's and a couple more cycles slower on 386's, but the relative cost of using it is not large since microtime() has to use slow i/o instructions on the old cpus. END