summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-16 15:59:40 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-16 15:59:40 (GMT)
commit9e7c15f53e347ceeba8e57c54973a2c2afb4d9d5 (patch)
treec97e96389c58ac76d16b27fe19ddb3689118e093 /unix/tclUnixNotfy.c
parented326ae9b57394d1756cebbb0bbe5c828fede4cd (diff)
parent0dd529776d4895043aa957a1e7f21d4015733c4e (diff)
downloadtcl-9e7c15f53e347ceeba8e57c54973a2c2afb4d9d5.zip
tcl-9e7c15f53e347ceeba8e57c54973a2c2afb4d9d5.tar.gz
tcl-9e7c15f53e347ceeba8e57c54973a2c2afb4d9d5.tar.bz2
merge trunk
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 3422089..9f9301f 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;