in reply to Re: Re: Getting size of call stack
in thread Getting size of call stack
I tweaked it a bit, setting $depth to -1
Wouldn't your subroutine always return -1? Shouldn't your GetCallStackDepth look more like:
sub GetCallStackDepth { my $depth = 1; # 0 is this sub, why bother checking it? $depth++ while caller($depth); return $depth - 1; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Getting size of call stack
by Sprad (Hermit) on Nov 07, 2003 at 17:43 UTC |