diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-11-24 20:19:22 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-11-24 20:19:22 (GMT) |
commit | 945028afafa4c5793f7724c36d78c0cfe4ecfb94 (patch) | |
tree | 21167115299e3a7383f972da8b21dd33cfb8dd45 /unix | |
parent | 4e8a3a30da0bfbfbdf76a15397a69989e8a055c3 (diff) | |
download | tcl-945028afafa4c5793f7724c36d78c0cfe4ecfb94.zip tcl-945028afafa4c5793f7724c36d78c0cfe4ecfb94.tar.gz tcl-945028afafa4c5793f7724c36d78c0cfe4ecfb94.tar.bz2 |
took out redundant memcpy from tclUnixNotfy.c
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixNotfy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 9d5e757..385e4d7 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixNotfy.c,v 1.11.2.5 2004/11/24 19:49:35 kennykb Exp $ + * RCS: @(#) $Id: tclUnixNotfy.c,v 1.11.2.6 2004/11/24 20:19:22 kennykb Exp $ */ #include "tclInt.h" @@ -769,8 +769,6 @@ Tcl_WaitForEvent(timePtr) #else tsdPtr->readyMasks = tsdPtr->checkMasks; - memcpy((VOID *) tsdPtr->readyMasks, (VOID *) tsdPtr->checkMasks, - sizeof( SelectMasks ) ); numFound = select( tsdPtr->numFdBits, &(tsdPtr->readyMasks.readable), &(tsdPtr->readyMasks.writable), |