Just for fun, here's an example bit of code.  It should print "1\n" and
exit almost immediately.  If this code hangs, you need to upgrade your
Math::BigInt:

#!/usr/bin/perl -w

use strict;
use Math::BigInt;

my $temp = Math::BigInt->new(1);
$temp = $temp->blsft(0);
print "$temp\n";


-monte

On Tue, 2 Apr 2002, Montgomery Newcom wrote:

>
> I just encountered this same issue.  The problem was with Math::BigInt.
> The bug existed in Math::BigInt-1.49, but appears fixed in
> Math::BigInt-1.56.
>
> -monte
>
> On Tue, 19 Feb 2002, Hugh Blandford wrote:
>
> > Hello all,
> >
> > I have just started using freeipdb.  Is there an archive of the mailing
> > lists somewhere?
> >
> > I am also having problems with 32 bit netmasks.  I am currently in the admin
> > screen adding all our existing IP address assignments. If I use /30 or
> > whatever I'm fine, as soon as I do a 32 bit mask the perl process takes all
> > the CPU and just seems to run.  Any suggestions?
> >
> > Before I go, I would just like to remind you all that Australia has won 2
> > gold medals!!! :))))))))
> >
> > Regards,
> >
> > Hugh Blandford
> >
> >
>
>


Reply via email to