summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPipe.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-22 09:26:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-22 09:26:08 (GMT)
commit3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac (patch)
tree06a7917577f972b4ba0725fb7a70530ebf7dce60 /unix/tclUnixPipe.c
parent4b4bde295d973621883e364eca8d17cd358d69cf (diff)
parentd2c4946d727b2d3f18c1da474fbc60bfc7424d6a (diff)
downloadtcl-3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac.zip
tcl-3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac.tar.gz
tcl-3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac.tar.bz2
Merge 8.7
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r--unix/tclUnixPipe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c
index 939ec85..ea1636e 100644
--- a/unix/tclUnixPipe.c
+++ b/unix/tclUnixPipe.c
@@ -1239,12 +1239,14 @@ PipeOutputProc(
* so do not pass it to directly to Tcl_CreateFileHandler.
* Instead, pass a wrapper which is a Tcl_FileProc.
*/
+
static void
PipeWatchNotifyChannelWrapper(
void *clientData,
int mask)
{
Tcl_Channel channel = (Tcl_Channel)clientData;
+
Tcl_NotifyChannel(channel, mask);
}