Remove old static util-time documentation.
This commit is contained in:
parent
cf4211d1ba
commit
a5afb25dd7
3 changed files with 22 additions and 26 deletions
|
@ -29,7 +29,8 @@
|
|||
|
||||
(module*
|
||||
util-time
|
||||
#:doc ("Compatibility time module for <5.2 and >=5.3 versions of CHICKEN.")
|
||||
#:doc ("Compatibility module for the differences between chicken scheme
|
||||
version 5.2 and earlier and 5.3 and on.")
|
||||
|
||||
(
|
||||
current-util-milliseconds
|
||||
|
@ -43,7 +44,15 @@
|
|||
(chicken format))
|
||||
|
||||
(define/doc (current-util-milliseconds)
|
||||
("Returns the current milliseconds counter that can be used for high-precision time measurements.")
|
||||
("Returns the number of milliseconds since process startup.
|
||||
|
||||
Under chicken scheme <5.3 it uses ```current-milliseconds``` and for
|
||||
chicken scheme >=5.3 it uses ```current-process-milliseconds```.
|
||||
|
||||
Without this module compilation with ```current-milliseconds```
|
||||
results in warnings on chicken scheme >=5.3 and compilation under
|
||||
chicken scheme <5.3 results in error with
|
||||
```current-process-milliseconds```.")
|
||||
(cond-expand
|
||||
(chicken-5.0
|
||||
(current-milliseconds))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue