mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
Merge pull request #743 from pclouds/chibi-b-opt
chibi-scheme.1: document -b
This commit is contained in:
commit
91f26c5313
2 changed files with 7 additions and 0 deletions
|
@ -225,6 +225,10 @@ Loads the Scheme heap from
|
||||||
.I image-file
|
.I image-file
|
||||||
instead of compiling the init file on the fly.
|
instead of compiling the init file on the fly.
|
||||||
This feature is still experimental.
|
This feature is still experimental.
|
||||||
|
.TP
|
||||||
|
.BI -b
|
||||||
|
Makes stdio nonblocking (blocking by default). Only available when
|
||||||
|
lightweight threads are enabled.
|
||||||
|
|
||||||
.SH ENVIRONMENT
|
.SH ENVIRONMENT
|
||||||
.TP
|
.TP
|
||||||
|
|
3
main.c
3
main.c
|
@ -59,6 +59,9 @@ void sexp_usage(int err) {
|
||||||
#if SEXP_USE_IMAGE_LOADING
|
#if SEXP_USE_IMAGE_LOADING
|
||||||
" -d <file> - dump an image file and exit\n"
|
" -d <file> - dump an image file and exit\n"
|
||||||
" -i <file> - load an image file\n"
|
" -i <file> - load an image file\n"
|
||||||
|
#endif
|
||||||
|
#if SEXP_USE_GREEN_THREADS
|
||||||
|
" -b - Make stdio nonblocking\n"
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
if (err == 0) exit_success();
|
if (err == 0) exit_success();
|
||||||
|
|
Loading…
Add table
Reference in a new issue