summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-02 11:58:18 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-02 11:58:18 (GMT)
commit3e6987856502d7a1c873cfa9de0abc2b09924476 (patch)
treed47b49f5576e364c5de808232dd154f650b89841 /unix/tclUnixNotfy.c
parent88eafacc822a9e546b2d075195d179e223a32296 (diff)
parentaef36bf11d4ad79a6f2e6691f132fd4c444822df (diff)
downloadtcl-3e6987856502d7a1c873cfa9de0abc2b09924476.zip
tcl-3e6987856502d7a1c873cfa9de0abc2b09924476.tar.gz
tcl-3e6987856502d7a1c873cfa9de0abc2b09924476.tar.bz2
merge trunk.
tclStubLib.c: protect loading incompatible Tcl9 extensions in Tcl8
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index b87af1b..5c03b79 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -39,7 +39,7 @@ typedef struct FileHandler {
* handlers are ready to fire.
*/
-typedef struct FileHandlerEvent {
+typedef struct {
Tcl_Event header; /* Information that is standard for all
* events. */
int fd; /* File descriptor that is ready. Used to find
@@ -54,7 +54,7 @@ typedef struct FileHandlerEvent {
* writable, and exception conditions.
*/
-typedef struct SelectMasks {
+typedef struct {
fd_set readable;
fd_set writable;
fd_set exception;