2007-09-20 18:09:08 -04:00
|
|
|
USING: help.markup help.syntax io io.backend strings
|
|
|
|
byte-arrays ;
|
|
|
|
|
|
|
|
HELP: io-multiplex
|
2012-08-01 15:08:18 -04:00
|
|
|
{ $values { "nanos" "a non-negative integer" } }
|
|
|
|
{ $contract "Waits up to " { $snippet "nanos" } " nanoseconds for pending I/O requests to complete." } ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
HELP: init-io
|
|
|
|
{ $contract "Initializes the I/O system. Called on startup." } ;
|
|
|
|
|
|
|
|
HELP: init-stdio
|
2017-06-05 13:13:54 -04:00
|
|
|
{ $contract "Initializes the global " { $link input-stream } " and " { $link output-stream } ". Called on startup." } ;
|