diff options
author | redman <redman> | 1999-07-21 21:28:58 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-21 21:28:58 (GMT) |
commit | c3e207442e12d119f7ce06154bf8a9572bce73c5 (patch) | |
tree | caa92c29e2e1a31ce47350a43770b31b7d01d7d6 /generic | |
parent | 8898e7a751fe8c39b5c30ee1202883b8e706f71e (diff) | |
download | tcl-c3e207442e12d119f7ce06154bf8a9572bce73c5.zip tcl-c3e207442e12d119f7ce06154bf8a9572bce73c5.tar.gz tcl-c3e207442e12d119f7ce06154bf8a9572bce73c5.tar.bz2 |
* win/tclWinSock.c: Modified 8.1.0 version of the Win32 socket
driver to move the handling of the socket event window in a
separate thread. It also turned out that Win95 & Win98 were, in
some cases, getting multiple FD_ACCEPTs but only handling one.
Added a count for the FD_ACCEPT to take care of this. Tested on
NT4 SP3, NT4 SP4, Win95, and Win98.
[Bug: 2178 2256 2259 2329 2323 2355]
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 6728537..46a3d2c 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.52 1999/07/16 01:52:24 redman Exp $ + * RCS: @(#) $Id: tcl.h,v 1.53 1999/07/21 21:28:59 redman Exp $ */ #ifndef _TCL @@ -178,6 +178,8 @@ extern "C" { #include <stdio.h> #endif +#include <sys/types.h> + /* * Definitions that allow Tcl functions with variable numbers of * arguments to be used with either varargs.h or stdarg.h. TCL_VARARGS |