Tuesday, February 9, 2021

Digest for comp.lang.c++@googlegroups.com - 2 updates in 2 topics

Jorgen Grahn <grahn+nntp@snipabacken.se>: Feb 09 11:23PM

["Followup-To:" header set to comp.lang.c.]
 
On Tue, 2021-02-09, Mike Garcia wrote:
>> archive.org has a real "find this item" problem
 
> Hey, thanks for the reply, yeah, I think this program predates ISOs,
> so... it's probably on floppy images!
 
CD collections from the early 1990s predate ISOs, too. People had
slow internet connections and CD burners were expensive, but some
people sold CDs by mail order. Some of these were really collections
of things originally distributed on floppies. E.g. the Amiga Fish
Disks. Some were copies of anonymous FTP sites like ftp.funet.fi.
Lots of it came without source code.
 
If it's predated by Windows 95 like you say, that puts it in the CD
collection time frame, or even after it.
 
/Jorgen
 
--
// Jorgen Grahn <grahn@ Oo o. . .
\X/ snipabacken.se> O o .
"Chris M. Thomasson" <chris.m.thomasson.1@gmail.com>: Feb 09 03:04PM -0800

On 2/8/2021 11:31 PM, Chris M. Thomasson wrote:
> On 2/7/2021 8:20 PM, Chris M. Thomasson wrote:
>> Well, here is a test program. When you get some free time, can you
>> please try to run it; give it a go?
[...]
 
I have been getting some requests to add in a std::cout.flush() after
some of the output in my program. So:
 
>     std::cout << "Chris M. Thomassons Proxy Collector Port ver
> .0.0.2...\n";
>     std::cout << "_______________________________________\n\n";
 
Add a std::cout.flush(); right here.
 
 
>         std::thread readers[ct_reader_threads_n];
>         std::thread writers[ct_writer_threads_n];
 
>         std::cout << "Booting threads...\n";
 
std::cout.flush();
 
 
>             readers[i] = std::thread(ct_thread_reader, std::ref(shared));
>         }
 
>         std::cout << "Threads running...\n";
 
std::cout.flush();
 
[...]
 
Some people are telling me that they cannot see the output until the
program is finished, hence adding std::cout.flush() helps here.
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page.
To unsubscribe from this group and stop receiving emails from it send an email to comp.lang.c+++unsubscribe@googlegroups.com.

No comments: