summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorstanton <stanton@noemail.net>1999-03-11 00:19:23 (GMT)
committerstanton <stanton@noemail.net>1999-03-11 00:19:23 (GMT)
commit47b2b7e7a506d560a704959c640881705899e671 (patch)
tree5395cacc9a5253542d062dfcb57426a2721a541b /unix/tclUnixPort.h
parentff708961428d75f4df6e2c76512cfd53affebca0 (diff)
downloadtcl-47b2b7e7a506d560a704959c640881705899e671.zip
tcl-47b2b7e7a506d560a704959c640881705899e671.tar.gz
tcl-47b2b7e7a506d560a704959c640881705899e671.tar.bz2
* win/tclWinPipe.c:
* generic/tclInt.decls: Added TclWinAddProcess to make it possible for expect to use Tcl_WaitForPid(). This patch is from Gordon Chaffee. * mac/tclMacPort.h: * win/tclWinInit.c: * unix/tclUnixPort.h: * generic/tclAsync.c: Added TclpAsyncMark to fix bug in async handling on Windows where async events don't wake up the event loop. This patch comes from Gordon Chaffee. * generic/tcl.decls: Fixed declarations of reserved slots. FossilOrigin-Name: a03165d0175a3e991abf40e00a65327aac8dc688
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index da64295..6ab38ee 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -19,7 +19,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixPort.h,v 1.9 1999/03/10 05:52:52 stanton Exp $
+ * RCS: @(#) $Id: tclUnixPort.h,v 1.10 1999/03/11 00:19:24 stanton Exp $
*/
#ifndef _TCLUNIXPORT
@@ -452,10 +452,11 @@ extern double strtod();
#define TclpReleaseFile(file)
/*
- * TclpFinalize is a noop on Unix systems.
+ * The following defines stub out functions that aren't needed on Unix.
*/
#define TclpFinalize()
+#define TclpAsyncMark(async)
#include "tclPlatDecls.h"
#include "tclIntPlatDecls.h"