I think I've seen this question asked before, my apologies if this was
recently.
I've got two programs intended to be functionally identical, one in Perl
and the other in FPC. They read a unix-domain datagram, decode the
message, and emit output; if this goes to a file then it's reasonable to
On Wed, Aug 29, 2018 at 03:01:54PM +, Mark Morgan Lloyd wrote:
> I think I've seen this question asked before, my apologies if this was
> recently.
>
> I've got two programs intended to be functionally identical, one in Perl and
> the other in FPC. They read a unix-domain datagram, decode the
On 29/08/18 16:00, Henry Vermaak wrote:
On Wed, Aug 29, 2018 at 03:01:54PM +, Mark Morgan Lloyd wrote:> I think I've seen this question asked before, my
apologies if this was> recently.> > I've got two programs intended to be functionally identical, one in Perl
and> the other in FPC. They r
Am 29.08.2018 um 18:25 schrieb Mark Morgan Lloyd:
On 29/08/18 16:00, Henry Vermaak wrote:
On Wed, Aug 29, 2018 at 03:01:54PM +, Mark Morgan Lloyd wrote:> I
think I've seen this question asked before, my apologies if this was>
recently.> > I've got two programs intended to be functionally
i
On 08/29/2018 11:01 AM, Mark Morgan Lloyd wrote:
Is there an equivalent for Pascal, or should I be using something like
fpSync(stdout) at opportune times?
flush();
i use it all the time on my programs that write to the logs... i hate having a
crash and be missing some log output because it w
On 08/29/2018 11:49 AM, Henry Vermaak wrote:
Otherwise you'll have to Flush() them manually, which is a pain.
really? i wrote a wrapper for write and writeln that simply calls them and then
does a flush()... nothing painful other than using mywrite() and mywriteln() or
similar ;)
--
NOTE:
On Wednesday 29 August 2018 17:01:54 Mark Morgan Lloyd wrote:
> I think I've seen this question asked before, my apologies if this was
> recently.
>
> I've got two programs intended to be functionally identical, one in Perl
> and the other in FPC. They read a unix-domain datagram, decode the
> mess
On Wed, 2018-08-29 at 15:01 +, Mark Morgan Lloyd wrote:
> I've got two programs intended to be functionally identical, one in Perl
> and the other in FPC. They read a unix-domain datagram, decode the
> message, and emit output; if this goes to a file then it's reasonable to
> monitor it usi