summaryrefslogtreecommitdiffstats
path: root/unix
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)
commit9de6ca2530227589abf30a69f273cbeb773e487d (patch)
tree06a7917577f972b4ba0725fb7a70530ebf7dce60 /unix
parent0cf372a804a358462c8846935f8ebf9a552bbc70 (diff)
parent39f39163b75b167982429e186a1105255faac7c4 (diff)
downloadtcl-9de6ca2530227589abf30a69f273cbeb773e487d.zip
tcl-9de6ca2530227589abf30a69f273cbeb773e487d.tar.gz
tcl-9de6ca2530227589abf30a69f273cbeb773e487d.tar.bz2
Merge 8.7
Diffstat (limited to 'unix')
-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);
}