summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-09-04 22:05:21 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-09-04 22:05:21 (GMT)
commit1ce040baf210e345e2c8f8a19fe7b8d821274c4b (patch)
treee6c260e498c99433ff8887bc7213766c7f63c7df
parent8d5c986031606a4565659bb82dcbba7ab9ce0186 (diff)
downloadtcl-1ce040baf210e345e2c8f8a19fe7b8d821274c4b.zip
tcl-1ce040baf210e345e2c8f8a19fe7b8d821274c4b.tar.gz
tcl-1ce040baf210e345e2c8f8a19fe7b8d821274c4b.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.
-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.
*/