Booger has asked for the wisdom of the Perl Monks concerning the following question:
I've googled for the following error that I am receiving but haven't across anything useful.
I'm attempting to measure the memory usage of subroutines in a Apache/mod_perl 1.29 application.
My Apache configuration includes the following:
<Location /perl-status>
SetHandler perl-script
PerlHandler Apache::Status
order deny,allow
#deny from all
#allow from ...
</Location>
PerlSetVar StatusOptionsAll On
PerlSetVar StatusTerse On
PerlSetVar StatusTerseSize On
PerlSetVar StatusTerseSizeMainSummary On
PerlModule B::TerseSize
After including these directives in my Apache configuration I started Apache up via httpd -X and discovered the following error:
Prototype mismatch: sub B::OP::size: none vs () at /home/madams/XpanceNET/dist/lib/perl5/site_perl/5.8.6/i686-linux/B/Size.pm line 24.
Does anyone have any idea why I might be getting this error, what it means and and what I can do to resolve it?
Any suggestions or ideas would be greatly appreciated!
Thanks in advance,
Matt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Prototype mismatch: sub B::OP::size: none vs () at
by japhy (Canon) on Mar 07, 2006 at 20:39 UTC | |
|
Re: Prototype mismatch: sub B::OP::size: none vs () at
by QM (Parson) on Mar 07, 2006 at 22:21 UTC |