in reply to solaris 7 issue...

I don't see why your infinite loop isn't working, but there are several other ways to write them:
while(1) { ... }
OR
{ ... redo }
OR
while() { ... }
OR
do { ... } while 1;
OR
do { ... } until 0;
See if one of these does what you need...

-Blake

Replies are listed 'Best First'.
Re: Re: solaris 7 issue...
by Anonymous Monk on Sep 24, 2002 at 09:17 UTC
    thx,
    i'm testing these possibilities, but until now, nothing seems to work. could it be, that this sieperl distribution sort of blocks infinite loops?
      No, it doesn't. Perhaps you have a bug in your program.

      Abigail

      ok, problem solved - 't was just a wrong setup of the io-stream at solaris 7 -> all my outputs where buffered, not printed...