summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2014-09-04 22:05:21 (GMT)
committerdgp <dgp@noemail.net>2014-09-04 22:05:21 (GMT)
commita19677ee3b4dcff933e99c75126c2b9354462f2f (patch)
tree2d8d6496c3d8f09da737ddf18ea8c8a94a7138bd /generic/tclIO.c
parentc4e794620ba541c55adc92dad7b87d7322a0c5f3 (diff)
downloadtcl-a19677ee3b4dcff933e99c75126c2b9354462f2f.zip
tcl-a19677ee3b4dcff933e99c75126c2b9354462f2f.tar.gz
tcl-a19677ee3b4dcff933e99c75126c2b9354462f2f.tar.bz2
Remove ChannelHandlerEvent struct, which has never been used in all of
recorded Tcl history. Still need to purge comments of mentions of ChannelHandlerEventProc() which is similarly pre-historic. FossilOrigin-Name: e2338e882831a27f218c71adbec56bed51591b20
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index eaa0aeb..4bd90cc 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -58,17 +58,6 @@ typedef struct NextChannelHandler {
} NextChannelHandler;
/*
- * The following structure describes the event that is added to the Tcl
- * event queue by the channel handler check procedure.
- */
-
-typedef struct ChannelHandlerEvent {
- Tcl_Event header; /* Standard header for all events. */
- Channel *chanPtr; /* The channel that is ready. */
- int readyMask; /* Events that have occurred. */
-} ChannelHandlerEvent;
-
-/*
* The following structure is used by Tcl_GetsObj() to encapsulates the
* state for a "gets" operation.
*/