> Jin Choi or Eve Anderson once faced something like it,
> judging from this snippet of code from the ACS 3.x spell-checker ... :
>
> # read will occasionally error out with "interrupted system call",
> # so retry a few times in the hopes that it will go away.
> set try 0
> set max_retry 10
> while { [catch { set ispell_text [read -nonewline $ispell_proc] }
errmsg]
> && $try < $max_retry } {
> incr try
> ns_log Notice "spellchecker had a problem: $errmsg"
> }
This is a different and clear error message. I'd be interested to
know what platform/Tcl version this occured with. There was a minor
bug fixed for BSD platforms in the Tcl layer where reads on a channel
could cause an error like that which could have been handled at the
C layer but were not (but they are now for 8.4+, perhaps even 8.3.5).
Jeff Hobbs The Tcl Guy
Senior Developer http://www.ActiveState.com/
Tcl Support and Productivity Solutions
--
AOLserver - http://www.aolserver.com/
To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of
your email blank.