in reply to How do I pre-allocate an array of hashes?
The reason perl is going round trying to free everything up is primarily to ensure that any remaining objects with DESTROY methods get them called appropriately.
I wouldn't particularly recommend this approach, but if you are confident that you don't have any objects needing DESTROY at exit, you can avoid the cleanup by calling instead POSIX::_exit at the end of the program.
Hugo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How do I pre-allocate an array of hashes?
by jaa (Friar) on Feb 24, 2003 at 11:14 UTC |