- Timestamp:
- Mar 14, 2015, 1:06:56 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/scripts/visviewer.tcl
r5128 r5132 50 50 protected variable _buffering 0 51 51 protected variable _cmdSeq 0 ; # Command sequence number 52 53 52 protected variable _dispatcher ""; # dispatcher for !events 54 53 protected variable _hosts "" ; # list of hosts for server … … 289 288 if { [gets $_sid data] <= 0 } { 290 289 set _sid "" 291 puts stderr " reading from server data=($data)"290 puts stderr "ERORR reading from server data=($data)" 292 291 RemoveServerFromList $_serverType $server 293 292 continue … … 465 464 } 466 465 set _buffer(out) $bytes 466 # There's problem when the user is interacting with the GUI at the 467 # same time we're trying to write to the server. Don't want to 468 # block because, the GUI will look like it's dead. We can start 469 # by putting a busy window over plot so that inadvertent things like 470 # mouse movements aren't received. 467 471 if {$_blockOnWrite} { 468 472 # Let's try this approach: allow a write to block so we don't
Note: See TracChangeset
for help on using the changeset viewer.