It was written as a handler.  I did not even send the constants, just a direct 200. (Altough I tried return OK, too).

package .../SimplePrint;

use strict;
use warnings;

######################################################################

sub handler {
    my $r     = shift;
    $r->send_http_header();
    $r->print('hello world');
    return 200;
}

1;

Perrin Harkins <[EMAIL PROTECTED]> wrote:
On Wed, 2006-06-07 at 12:33 -0700, john doe wrote:
> I suspect our current setup of mod_perl is leaking memory, most likely
> due to bad C/C++ libraries somewhere. I came to this conclusion after
> days of research and testing. I setup a very very thin version of
> apache 1.3.34 with mod_perl compiled statically. I have an ever
> thinner handler that just prints hello, world. I also have a similiar
> setup on a FreeBSD machine. After hitting the same uri, the linux
> machine leaks 4k per request, while the FreeBSD DOES NOT.

It sounds more like a Perl issue to me. I'd recommend compiling Perl
from source if you're using an RPM.

Can you show us the hello world code you wrote? Did you run it under
Apache::Registry or as a handler?

- Perrin


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

Reply via email to