Hi all,

Factor now deals with microseconds instead of milliseconds internally.
The new 'micros' primitive supersedes the 'millis' primitive. Phil
Dawes' extra/micros vocabulary, having served its purpose, is gone
now. I updated extra/wordtimer to use the new core micros word too.

Older code likes to pass integers to 'sleep'. This won't work anymore.
Pass durations instead. Any code that passes durations continues to
work as before:

3 seconds sleep
100 milliseconds sleep

Any code which passes a bare integer should pass a duration instead:

300 sleep    ! old way
300 milliseconds sleep    ! new way

I tried to update all of usages of 'sleep' I could find to pass
durations instead of integers.

Slava

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Factor-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to