mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +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
|
||||
instead of compiling the init file on the fly.
|
||||
This feature is still experimental.
|
||||
.TP
|
||||
.BI -b
|
||||
Makes stdio nonblocking (blocking by default). Only available when
|
||||
lightweight threads are enabled.
|
||||
|
||||
.SH ENVIRONMENT
|
||||
.TP
|
||||
|
|
3
main.c
3
main.c
|
@ -59,6 +59,9 @@ void sexp_usage(int err) {
|
|||
#if SEXP_USE_IMAGE_LOADING
|
||||
" -d <file> - dump an image file and exit\n"
|
||||
" -i <file> - load an image file\n"
|
||||
#endif
|
||||
#if SEXP_USE_GREEN_THREADS
|
||||
" -b - Make stdio nonblocking\n"
|
||||
#endif
|
||||
);
|
||||
if (err == 0) exit_success();
|
||||
|
|
Loading…
Add table
Reference in a new issue