jai has asked for the wisdom of the Perl Monks concerning the following question:

hi,
I doubt this problem is exactly related to perl, but while using mason (a HTML template Tool), a perl SAPDB library & apache, i get panic: magic_killbackrefs during global destruction. in the error_log file. The server goes on eating memory and finaly crashes.
Since Mason is a perl program, I guess theres some problem in the use of perl. Anyone having idea please respond.

jai..

Replies are listed 'Best First'.
Re: problem with apache
by PodMaster (Abbot) on Sep 08, 2003 at 06:56 UTC
    It's trivial to check if it's a perl thing (perldoc perltoc|grep -i magic_killbackrefs, perldoc perldiag|grep -i magic_killbackrefs).

    `perldoc perldiag' :
    panic: magic_killbackrefs
    (P) Failed an internal consistency check while trying to reset all weak references to an object.

    MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
    I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
    ** The third rule of perl club is a statement of fact: pod is sexy.

      You can also pipe the error in question through splain after the fact, or add use diagnostics to your code.

      thanks for the info, i didnt know about perldoc perldiag.

      jai..