factor/contrib/crypto/timing.factor

7 lines
179 B
Factor
Raw Normal View History

2006-08-09 22:54:49 -04:00
IN: timing
2006-08-09 23:01:18 -04:00
USING: kernel math threads ;
2006-08-09 22:54:49 -04:00
2006-08-09 23:01:18 -04:00
: with-timing ( n quot -- )
2006-08-09 22:54:49 -04:00
#! force the quotation to execute in, at minimum, n milliseconds
2006-08-09 23:01:18 -04:00
millis >r call millis r> - - sleep ;