home *** CD-ROM | disk | FTP | other *** search
- :
- #----------------------------------------------------------------------
- # siotools v09i044/v09i45 Patch 3
- # 1. siomon "Initializing" status was not refreshed until init done :-)
- # 2. Add RTSFLOW and CTSFLOW to detail status for XENIX & SCO UNIX
- #----------------------------------------------------------------------
- #+:EDITS:
- #:12-21-1989-16:02-wht-creation
-
- sed -e 's/^P//' << DIFF_EOF | patch
- P*** siomon.c Mon Dec 4 18:28:00 1989
- P--- ../siomon.c Thu Dec 21 15:21:09 1989
- P***************
- P*** 1,5
- P /* CHK=0x4E4E */
- P! char *revision = "1.30";
- P /*+-------------------------------------------------------------------------
- P siomon.c -- watch XENIX/UNIX serial I/O
- P ...!gatech!kd4nc!n4hgf!wht
- P
- P--- 1,5 -----
- P /* CHK=0x4E4E */
- P! char *revision = "1.32";
- P /*+-------------------------------------------------------------------------
- P siomon.c -- watch XENIX/UNIX serial I/O
- P ...!gatech!kd4nc!n4hgf!wht
- P***************
- P*** 51,56
- P regarding screen and CPU efficiency in the original itpmon.c for Pyramid
- P --------------------------------------------------------------------------*/
- P /*+:EDITS:*/
- P /*:12-04-1989-16:45-wht-add more to detail */
- P /*:11-28-1989-19:49-wht-no more sprintf and allow nap/rdchk in lieu of select */
- P /*:11-22-1989-12:33-wht-rehost my Pyramid itpmon.c */
- P
- P--- 51,57 -----
- P regarding screen and CPU efficiency in the original itpmon.c for Pyramid
- P --------------------------------------------------------------------------*/
- P /*+:EDITS:*/
- P+ /*:12-21-1989-15:20-wht-version number chg - CTSFLOW/RTSFLOW */
- P /*:12-04-1989-16:45-wht-add more to detail */
- P /*:11-28-1989-19:49-wht-no more sprintf and allow nap/rdchk in lieu of select */
- P /*:11-22-1989-12:33-wht-rehost my Pyramid itpmon.c */
- P***************
- P*** 429,434
- P move(4,0);
- P standout();
- P addstr(" initializing ");
- P if(cptr = kmem_init_tty())
- P {
- P move(4,0);
- P
- P--- 430,436 -----
- P move(4,0);
- P standout();
- P addstr(" initializing ");
- P+ refresh();
- P if(cptr = kmem_init_tty())
- P {
- P move(4,0);
- P*** wintty.c Mon Dec 4 18:28:00 1989
- P--- ../wintty.c Thu Dec 21 15:20:09 1989
- P***************
- P*** 17,22
- P
- P --------------------------------------------------------------------------*/
- P /*+:EDITS:*/
- P /*:12-04-1989-15:40-wht-creation */
- P
- P #include <curses.h>
- P
- P--- 17,23 -----
- P
- P --------------------------------------------------------------------------*/
- P /*+:EDITS:*/
- P+ /*:12-21-1989-15:18-wht-display CTSFLOW and RTSFLOW if defined */
- P /*:12-04-1989-15:40-wht-creation */
- P
- P #include <curses.h>
- P***************
- P*** 80,85
- P { 3, 23, "CREAD", CFLAG, CREAD },
- P { 3, 31, "HUPCL", CFLAG, HUPCL },
- P { 3, 39, "CLOCAL", CFLAG, CLOCAL },
- P { 4, 7, "ISIG", LFLAG, ISIG },
- P { 4, 15, "ICANON", LFLAG, ICANON },
- P { 4, 23, "XCASE", LFLAG, XCASE },
- P
- P--- 81,92 -----
- P { 3, 23, "CREAD", CFLAG, CREAD },
- P { 3, 31, "HUPCL", CFLAG, HUPCL },
- P { 3, 39, "CLOCAL", CFLAG, CLOCAL },
- P+ #ifdef RTSFLOW
- P+ { 3, 46, "RTSFLO", CFLAG, RTSFLOW },
- P+ #endif
- P+ #ifdef CTSFLOW
- P+ { 3, 53, "CTSFLO", CFLAG, CTSFLOW },
- P+ #endif
- P { 4, 7, "ISIG", LFLAG, ISIG },
- P { 4, 15, "ICANON", LFLAG, ICANON },
- P { 4, 23, "XCASE", LFLAG, XCASE },
- P***************
- P*** 169,175
- P cflag_to_baud_d_p_s(cflag)
- P int cflag;
- P {
- P! register char * cptr;
- P static char rtnstr[16];
- P
- P strcpy(rtnstr,B_to_baud_rate(cflag & CBAUD));
- P
- P--- 176,182 -----
- P cflag_to_baud_d_p_s(cflag)
- P int cflag;
- P {
- P! register char *cptr;
- P static char rtnstr[16];
- P
- P strcpy(rtnstr,B_to_baud_rate(cflag & CBAUD));
- DIFF_EOF
- echo 'Patch 3 applied.'
- exit 0
-