in reply to No 'out of memory' message on Windows?

Possibly a supervisor process should monitor your primary process to see if it's still making progress. You might touch somefile from within the memorymonster, and have the supervisor check that file not becoming too old.

I've found

if (my $chld = fork) { # supervise $chld from here } else { # unreliable process here }
useful. hth

Edit: Maybe you can make do with just confirming a successful run with a print "successfully done\n";

Replies are listed 'Best First'.
Re^2: No 'out of memory' message on Windows?
by oxone (Friar) on Feb 09, 2008 at 13:06 UTC
    Thanks! Not quite sure how I failed to think of the simple approach of printing "OK" or some such at the end, then checking for presence/absence of that, but that will do me fine in this instance. Pointing out the obvious is much appreciated!