public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: libstdc++/2523
@ 2001-05-02 11:06 bkoz
0 siblings, 0 replies; 5+ messages in thread
From: bkoz @ 2001-05-02 11:06 UTC (permalink / raw)
To: bkoz; +Cc: gcc-prs
The following reply was made to PR libstdc++/2523; it has been noted by GNATS.
From: bkoz@gcc.gnu.org
To: bkoz@gcc.gnu.org, gcc-gnats@gcc.gnu.org, pme@gcc.gnu.org,
yasir_home@bigfoot.com
Cc:
Subject: Re: libstdc++/2523
Date: 2 May 2001 18:02:25 -0000
Synopsis: cin polling for input
Responsible-Changed-From-To: pme->bkoz
Responsible-Changed-By: bkoz
Responsible-Changed-When: Wed May 2 11:02:24 2001
Responsible-Changed-Why:
Responsible
State-Changed-From-To: open->analyzed
State-Changed-By: bkoz
State-Changed-When: Wed May 2 11:02:24 2001
State-Changed-Why:
Working on a fix...
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2523&database=gcc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: libstdc++/2523
@ 2001-05-08 23:46 bkoz
0 siblings, 0 replies; 5+ messages in thread
From: bkoz @ 2001-05-08 23:46 UTC (permalink / raw)
To: bkoz; +Cc: gcc-prs
The following reply was made to PR libstdc++/2523; it has been noted by GNATS.
From: bkoz@gcc.gnu.org
To: bkoz@gcc.gnu.org, gcc-gnats@gcc.gnu.org, yasir_home@bigfoot.com
Cc:
Subject: Re: libstdc++/2523
Date: 9 May 2001 06:40:34 -0000
Synopsis: cin polling for input
State-Changed-From-To: feedback->closed
State-Changed-By: bkoz
State-Changed-When: Tue May 8 23:40:34 2001
State-Changed-Why:
Fixed
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2523&database=gcc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: libstdc++/2523
@ 2001-05-08 10:46 bkoz
0 siblings, 0 replies; 5+ messages in thread
From: bkoz @ 2001-05-08 10:46 UTC (permalink / raw)
To: bkoz; +Cc: gcc-prs
The following reply was made to PR libstdc++/2523; it has been noted by GNATS.
From: bkoz@gcc.gnu.org
To: bkoz@gcc.gnu.org, gcc-gnats@gcc.gnu.org, yasir_home@bigfoot.com
Cc:
Subject: Re: libstdc++/2523
Date: 8 May 2001 17:44:17 -0000
Synopsis: cin polling for input
State-Changed-From-To: analyzed->feedback
State-Changed-By: bkoz
State-Changed-When: Tue May 8 10:44:16 2001
State-Changed-Why:
Fixed on CVS head yesterday with this:
2001-05-07 Benjamin Kosnik <bkoz@redhat.com>
libstdc++/2523
* include/bits/std_fstream.h (basic_filebuf): Change signature.
* include/bits/fstream.tcc (basic_filebuf): Change bool argument
to int_type, pass in buffer size info.
* include/bits/std_streambuf.h (_M_is_indeterminate): Check for
unbuffered situation.
(underflow): Remove codecvt bits for the time being.
* include/bits/istream.tcc (istream::sentry): Avoid sputbackc call.
* include/bits/locale_facets.tcc (_M_extract): Cache dereference
values from iterators, clean.
* src/locale.cc: Ditto.
* include/bits/sbuf_iter.h: Format.
* src/ios.cc: Explicitly pass in buffer sizes at creation time.
* testsuite/27_io/narrow_stream_objects.cc: Add tests.
* testsuite/27_io/filebuf.cc: Tweaks.
* testsuite/27_io/filebuf_members.cc: Tweaks.
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2523&database=gcc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: libstdc++/2523
@ 2001-04-15 14:46 pme
0 siblings, 0 replies; 5+ messages in thread
From: pme @ 2001-04-15 14:46 UTC (permalink / raw)
To: pme; +Cc: gcc-prs
The following reply was made to PR libstdc++/2523; it has been noted by GNATS.
From: pme@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org, pcarlini@unitus.it,
pme@gcc.gnu.org, yasir_home@bigfoot.com
Cc:
Subject: Re: libstdc++/2523
Date: 15 Apr 2001 21:44:54 -0000
Synopsis: cin polling for input
Responsible-Changed-From-To: unassigned->pme
Responsible-Changed-By: pme
Responsible-Changed-When: Sun Apr 15 14:44:54 2001
Responsible-Changed-Why:
Why ask why?
State-Changed-From-To: closed->open
State-Changed-By: pme
State-Changed-When: Sun Apr 15 14:44:54 2001
State-Changed-Why:
Re-opened after more users reported the bug. Will test
once I can bootstrap the tree.
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2523&database=gcc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: libstdc++/2523
@ 2001-04-11 13:26 pme
0 siblings, 0 replies; 5+ messages in thread
From: pme @ 2001-04-11 13:26 UTC (permalink / raw)
To: nobody; +Cc: gcc-prs
The following reply was made to PR libstdc++/2523; it has been noted by GNATS.
From: pme@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org, yasir_home@bigfoot.com
Cc:
Subject: Re: libstdc++/2523
Date: 11 Apr 2001 20:21:35 -0000
Synopsis: cin polling for input
State-Changed-From-To: open->closed
State-Changed-By: pme
State-Changed-When: Wed Apr 11 13:21:35 2001
State-Changed-Why:
Thank you for your bug report.
Note that "Priority: high" is reserved for GCC
maintainers.
I cannot reproduce this using trunk or branch. With
branch:
14% cat 2523.cc
#include <iostream>
using namespace std;
int main()
{
int i;
cin >> i;
cout << "i == " << i << endl;
}
15% g++ 2523.cc
16% ./a.out
* 3
i == 3
17% echo 42 > input
18% ./a.out < input
i == 42
19%
The line marked with * is my keyboard input.
I suggest you try commands 18 and 19 above, redirecting
input from a file. If that works, then it is a problem in
your terminal settings.
The above is on a RH 7.0 system, using the glibc 2.2 RPM.
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2523&database=gcc
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2001-05-08 23:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-02 11:06 libstdc++/2523 bkoz
-- strict thread matches above, loose matches on Subject: below --
2001-05-08 23:46 libstdc++/2523 bkoz
2001-05-08 10:46 libstdc++/2523 bkoz
2001-04-15 14:46 libstdc++/2523 pme
2001-04-11 13:26 libstdc++/2523 pme
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).