Fw: dup tty error.
Christopher Faylor
cgf@redhat.com
Sun Jun 30 15:14:00 GMT 2002
On Sun, Jun 30, 2002 at 02:00:57PM +0100, Chris January wrote:
>2002-06-30 Christopher January <chris@atomice.net>
>
> * tty.cc (tty_list::allocate_tty): retry FindWindow if it fails.
__small_sprintf (buf, "cygwin.find.console.%d", myself->pid);
SetConsoleTitle (buf);
- Sleep (40);
- console = FindWindow (NULL, buf);
+ for (int times = 0; times < 25 && console == NULL; times++)
+ {
+ Sleep (40);
+ console = FindWindow (NULL, buf);
+ }
SetConsoleTitle (oldtitle);
Sleep (40);
ReleaseMutex (title_mutex);
Is the SetConsoleTitle really succeeding when the window doesn't exist
yet? That seems really broken to me but I guess that not too surprising.
I'm just wondering if we should be looping on the SetConsoleTitle rather
than the FindWindow.
cgf
More information about the Cygwin-patches
mailing list