From d2a3e887caf524096070bbe8667b700520357b4b Mon Sep 17 00:00:00 2001 From: redman Date: Wed, 21 Apr 1999 20:08:17 +0000 Subject: Merge with 8.1.0 branch --- win/stub16.c | 4 ++-- win/tclWinFCmd.c | 11 ++++++++++- win/tclWinSerial.c | 42 ++++++++++-------------------------------- 3 files changed, 22 insertions(+), 35 deletions(-) diff --git a/win/stub16.c b/win/stub16.c index 44e18d6..b4d53ef 100644 --- a/win/stub16.c +++ b/win/stub16.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: stub16.c,v 1.2 1998/09/14 18:40:19 stanton Exp $ + * RCS: @(#) $Id: stub16.c,v 1.3 1999/04/21 20:10:09 redman Exp $ */ #define STRICT @@ -132,9 +132,9 @@ main() WaitForInputIdle(pi.hProcess, 5000); WaitForSingleObject(pi.hProcess, INFINITE); + GetExitCodeProcess(pi.hProcess, &result); CloseHandle(pi.hProcess); CloseHandle(pi.hThread); - result = 0; if (hFileOutput != INVALID_HANDLE_VALUE) { SetFilePointer(hFileOutput, 0, 0, FILE_BEGIN); diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c index 81f4608..d7d990e 100644 --- a/win/tclWinFCmd.c +++ b/win/tclWinFCmd.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinFCmd.c,v 1.3 1999/04/16 00:48:08 stanton Exp $ + * RCS: @(#) $Id: tclWinFCmd.c,v 1.4 1999/04/21 20:09:17 redman Exp $ */ #include "tclWinInt.h" @@ -1354,6 +1354,15 @@ ConvertFileNameFormat( Tcl_SplitPath(fileName, &pathc, &pathv); newv = (char **) ckalloc(pathc * sizeof(char *)); + if (pathc == 0) { + Tcl_AppendStringsToObj(Tcl_GetObjResult(interp), + "could not read \"", fileName, + "\": no such file or directory", + (char *) NULL); + result = TCL_ERROR; + goto cleanup; + } + for (i = 0; i < pathc; i++) { if ((pathv[i][0] == '/') || ((strlen(pathv[i]) == 3) && (pathv[i][1] == ':')) diff --git a/win/tclWinSerial.c b/win/tclWinSerial.c index 733da67..a96f908 100644 --- a/win/tclWinSerial.c +++ b/win/tclWinSerial.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinSerial.c,v 1.2 1999/04/16 00:48:09 stanton Exp $ + * RCS: @(#) $Id: tclWinSerial.c,v 1.3 1999/04/21 20:08:17 redman Exp $ */ #include "tclWinInt.h" @@ -46,7 +46,10 @@ TCL_DECLARE_MUTEX(serialMutex) */ #define SERIAL_EOF (1<<2) /* Serial has reached EOF. */ -#define SERIAL_EXTRABYTE (1<<3) /* Extra byte consumed while waiting for data */ +#define SERIAL_EXTRABYTE (1<<3) /* Extra byte consumed while waiting for data + */ +#define SERIAL_ERROR (1<<4) + /* * This structure describes per-instance data for a serial based channel. */ @@ -950,9 +953,8 @@ WaitForRead( int blocking) /* Indicates whether call should be * blocking or not. */ { - DWORD timeout, errors; + DWORD timeout; HANDLE *handle = infoPtr->handle; - COMSTAT stat; while (1) { /* @@ -984,25 +986,6 @@ WaitForRead( return 1; } - if (ClearCommError(infoPtr->handle, &errors, &stat)) { - /* - * If there are errors, then signal an I/O error. - */ - - if (errors != 0) { - errno = EIO; - return -1; - } - } - - /* - * If data is in the queue return 1 - */ - - if (stat.cbInQue != 0) { - return 1; - } - /* * if there is an extra byte that was consumed while * waiting, but no data in the queue, return 0 @@ -1010,8 +993,10 @@ WaitForRead( if (infoPtr->readFlags & SERIAL_EXTRABYTE) { return 0; + } else if ((infoPtr->readFlags & SERIAL_ERROR) == EIO) { + return -1; } - + ResetEvent(infoPtr->readable); SetEvent(infoPtr->startReader); } @@ -1041,9 +1026,8 @@ SerialReaderThread(LPVOID arg) { SerialInfo *infoPtr = (SerialInfo *)arg; HANDLE *handle = infoPtr->handle; - DWORD mask = EV_RXCHAR; DWORD count; - + for (;;) { /* * Wait for the main thread to signal before attempting to wait. @@ -1073,12 +1057,6 @@ SerialReaderThread(LPVOID arg) infoPtr->readFlags |= SERIAL_EXTRABYTE; } - } else { - /* - * There is an error, signal an EOF. - */ - - infoPtr->readFlags |= SERIAL_EOF; } /* -- cgit v0.12