in reply to Memory usage information

I've never done anything like this on Windows, but a hunt around CPAN comes up with Win32::SystemInfo. If this doesn't meet your needs, why not use an external tool to monitor your process? Does WinCE have the Windows Task Manager, and if so would that be any use?

In general, I'd recommend BSD::Resource for this, but I doubt it will work on WinCE.

Replies are listed 'Best First'.
Re: Re: Memory usage information
by svad (Pilgrim) on May 23, 2002 at 09:47 UTC
    Thank you for interesting input, and sometimes your approach this will work good. But I am trying to find less platform-dependent (WinCE is just an example!) but rather Perl-specific solution, something similar to Devel::Prof or even DB::DB modules.

    I think best solution will be an XS module that understands Perl internals and provides information, but I am lost whether such exists, or can be written without changing the Perl core.

    BTW will BSD::Resource work for Linux? for Win32?