diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-05-22 09:26:08 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-05-22 09:26:08 (GMT) |
| commit | 3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac (patch) | |
| tree | 06a7917577f972b4ba0725fb7a70530ebf7dce60 /unix/tclUnixPipe.c | |
| parent | 4b4bde295d973621883e364eca8d17cd358d69cf (diff) | |
| parent | d2c4946d727b2d3f18c1da474fbc60bfc7424d6a (diff) | |
| download | tcl-3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac.zip tcl-3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac.tar.gz tcl-3e133e956bf5ce2f5bf2d8931ce4a5af07d30cac.tar.bz2 | |
Merge 8.7
Diffstat (limited to 'unix/tclUnixPipe.c')
| -rw-r--r-- | unix/tclUnixPipe.c | 2 |
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); } |
