]> gitweb.factorcode.org Git - factor.git/blob - core/io/backend/backend-docs.factor
*-docs: replace double spaces with single spaces
[factor.git] / core / io / backend / backend-docs.factor
1 USING: help.markup help.syntax io io.backend strings
2 byte-arrays ;
3
4 HELP: io-multiplex
5 { $values { "nanos" "a non-negative integer" } }
6 { $contract "Waits up to " { $snippet "nanos" } " nanoseconds for pending I/O requests to complete." } ;
7
8 HELP: init-io
9 { $contract "Initializes the I/O system. Called on startup." } ;
10
11 HELP: init-stdio
12 { $contract "Initializes the global " { $link input-stream } " and " { $link output-stream } ". Called on startup." } ;