1 # Copyright (C) 2002 Stanislav Sinyagin
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17 # $Id: webmux2.pl,v 1.1 2010-12-27 00:04:42 ivan Exp $
18 # Stanislav Sinyagin <ssinyagin@yahoo.com>
20 # Apache mod_perl initialisation
22 BEGIN { require '@torrus_config_pl@'; }
24 use Apache2::ServerUtil;
30 # Probably we need MPM-specific Code here
31 # http://perl.apache.org/docs/2.0/user/coding/coding.html
33 # Tested with prefork MPM only.
34 # Threaded MPMs will not work because RRDtool is RRDs.pm is not
35 # currently thread safe
38 sub child_exit_handler
40 my( $child_pool, $s ) = @_;
41 Debug('Torrus child exit handler executed');
42 Torrus::DB::cleanupEnvironment();
46 if( $Torrus::Renderer::globalDebug )
48 &Torrus::Log::setLevel('debug');
52 my $s = Apache2::ServerUtil->server();
54 # Apache::Server::is_perl_option_enabled is implemented since
55 # mod_perl2-1.99r13, but many installations still use mod_perl2-1.99r12
56 if( $mod_perl::VERSION > 1.9912 and
57 not $s->is_perl_option_enabled('ChildExit') )
60 $s->log_error('ChildExit must be enabled for proper cleanup');
64 $s->push_handlers( 'ChildExit' => \&child_exit_handler );
72 # indent-tabs-mode: nil
73 # perl-indent-level: 4