Release notes said we don't do sighandlers. Fixed.

This commit is contained in:
shivers 1997-04-22 17:55:50 +00:00
parent 5b5f58bd70
commit 33c91d854d
1 changed files with 7 additions and 7 deletions

14
RELEASE
View File

@ -36,13 +36,13 @@ as a macro that can be embedded inside general Scheme code.
** Scsh as a systems-programming language ** Scsh as a systems-programming language
----------------------------------------- -----------------------------------------
Scsh additionally provides the low-level access to the operating system Scsh additionally provides the low-level access to the operating system
normally associated with C. With the exception of signal handlers, the current normally associated with C. The current release provides full access to Posix,
release provides full access to Posix, plus important non-Posix extensions, plus important non-Posix extensions, such as complete sockets
such as complete sockets support. "Complete Posix" means: fork, exec & wait, support. "Complete Posix" means: fork, exec & wait, sockets, full read, write,
sockets, full read, write, open & close, seek & tell, complete file-system open & close, seek & tell, complete file-system access, including stat,
access, including stat, chmod/chgrp/chown, symlink, FIFO & directory access, chmod/chgrp/chown, symlink, FIFO & directory access, tty & pty support, file
tty & pty support, file locking, pipes, select, file-name pattern-matching, locking, pipes, select, file-name pattern-matching, time & date, environment
time & date, environment variables, and more. variables, signal handlers, and more.
In brief, you can now write Unix systems programs in Scheme instead of C. In brief, you can now write Unix systems programs in Scheme instead of C.
For example, we have implemented an extensible HTTP server at MIT entirely For example, we have implemented an extensible HTTP server at MIT entirely