home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2618 / README < prev    next >
Encoding:
Text File  |  1991-01-29  |  951 b   |  19 lines

  1. This code is in the public domain.  THIS CODE IS PROVIDED ON AN AS-IS
  2. BASIS.  THE USER ACCEPTS ALL RISKS ASSOCIATED WITH USING THIS CODE AND
  3. IS SOLELY RESPONSIBLE FOR CORRECTING ANY SOFTWARE ERRORS OR DAMAGE
  4. CAUSED BY SOFTWARE ERRORS OR MISUSE.
  5.  
  6. Written by John F Haugh II and modified to include suggestions made by
  7. Pat Myrto, Dan Bernstein, and Axel Fischer.
  8.  
  9. This is the "session manager" command.  It is a very simple program which
  10. manages multiple PTY connections.  It allows a single connection to have
  11. multiple shells active at a single time.  It should work with any system
  12. which includes pseudo-TTY devices.
  13.  
  14. There are quite a few systems which do not correctly support non-blocking
  15. reads from the master side of a PTY.  You must edit the sm.c file to
  16. #define BLOCKING_PTY if you are using one of these systems.  You must
  17. define BLOCKING_PTY if your system does not properly support either
  18. fcntl() or the O_NDELAY option to that system call.
  19.